• 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

28.57
/src/main/java/com/box/sdkgen/schemas/trashweblink/TrashWebLinkPathCollectionField.java
1
package com.box.sdkgen.schemas.trashweblink;
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.List;
7
import java.util.Objects;
8

9
@JsonFilter("nullablePropertyFilter")
10
public class TrashWebLinkPathCollectionField extends SerializableObject {
11

12
  /** The number of folders in this list. */
13
  @JsonProperty("total_count")
14
  protected final long totalCount;
15

16
  /** Array of folders for this item's path collection. */
17
  protected final List<TrashWebLinkPathCollectionEntriesField> entries;
18

19
  public TrashWebLinkPathCollectionField(
20
      @JsonProperty("total_count") long totalCount,
21
      @JsonProperty("entries") List<TrashWebLinkPathCollectionEntriesField> entries) {
22
    super();
1✔
23
    this.totalCount = totalCount;
1✔
24
    this.entries = entries;
1✔
25
  }
1✔
26

27
  public long getTotalCount() {
28
    return totalCount;
×
29
  }
30

31
  public List<TrashWebLinkPathCollectionEntriesField> getEntries() {
32
    return entries;
×
33
  }
34

35
  @Override
36
  public boolean equals(Object o) {
37
    if (this == o) {
×
38
      return true;
×
39
    }
40
    if (o == null || getClass() != o.getClass()) {
×
41
      return false;
×
42
    }
43
    TrashWebLinkPathCollectionField casted = (TrashWebLinkPathCollectionField) o;
×
44
    return Objects.equals(totalCount, casted.totalCount) && Objects.equals(entries, casted.entries);
×
45
  }
46

47
  @Override
48
  public int hashCode() {
49
    return Objects.hash(totalCount, entries);
×
50
  }
51

52
  @Override
53
  public String toString() {
54
    return "TrashWebLinkPathCollectionField{"
×
55
        + "totalCount='"
56
        + totalCount
57
        + '\''
58
        + ", "
59
        + "entries='"
60
        + entries
61
        + '\''
62
        + "}";
63
  }
64
}
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