• 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

33.33
/src/main/java/com/box/sdkgen/managers/weblinks/CreateWebLinkRequestBodyParentField.java
1
package com.box.sdkgen.managers.weblinks;
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 CreateWebLinkRequestBodyParentField extends SerializableObject {
10

11
  /** The ID of parent folder. */
12
  protected final String id;
13

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

19
  public String getId() {
20
    return id;
1✔
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
    CreateWebLinkRequestBodyParentField casted = (CreateWebLinkRequestBodyParentField) o;
×
32
    return Objects.equals(id, casted.id);
×
33
  }
34

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

40
  @Override
41
  public String toString() {
42
    return "CreateWebLinkRequestBodyParentField{" + "id='" + id + '\'' + "}";
×
43
  }
44
}
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