• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

box / box-java-sdk / #5076

07 Oct 2025 12:35PM UTC coverage: 37.132% (+0.007%) from 37.125%
#5076

push

github

web-flow
test: Change `Event.additionalDetails` field assertion in events test (box/box-codegen#858) (#1491)

18454 of 49699 relevant lines covered (37.13%)

0.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/box/sdkgen/managers/transfer/TransferOwnedFolderRequestBodyOwnedByField.java
1
package com.box.sdkgen.managers.transfer;
2

3
import com.box.sdkgen.internal.SerializableObject;
4
import com.fasterxml.jackson.annotation.JsonFilter;
5
import com.fasterxml.jackson.annotation.JsonProperty;
6
import java.util.Objects;
7

8
@JsonFilter("nullablePropertyFilter")
9
public class TransferOwnedFolderRequestBodyOwnedByField extends SerializableObject {
10

11
  /** The ID of the user who the folder will be transferred to. */
12
  protected final String id;
13

14
  public TransferOwnedFolderRequestBodyOwnedByField(@JsonProperty("id") String id) {
15
    super();
×
16
    this.id = id;
×
17
  }
×
18

19
  public String getId() {
20
    return id;
×
21
  }
22

23
  @Override
24
  public boolean equals(Object o) {
25
    if (this == o) {
×
26
      return true;
×
27
    }
28
    if (o == null || getClass() != o.getClass()) {
×
29
      return false;
×
30
    }
31
    TransferOwnedFolderRequestBodyOwnedByField casted =
×
32
        (TransferOwnedFolderRequestBodyOwnedByField) o;
33
    return Objects.equals(id, casted.id);
×
34
  }
35

36
  @Override
37
  public int hashCode() {
38
    return Objects.hash(id);
×
39
  }
40

41
  @Override
42
  public String toString() {
43
    return "TransferOwnedFolderRequestBodyOwnedByField{" + "id='" + id + '\'' + "}";
×
44
  }
45
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc