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

box / box-java-sdk-gen / #290

24 Jun 2025 01:20PM UTC coverage: 35.757% (+0.1%) from 35.632%
#290

Pull #347

github

web-flow
Merge 2c100d09c into d8480ee6c
Pull Request #347: feat: Add Webhook Validation In Java (box/box-codegen#745)

68 of 82 new or added lines in 2 files covered. (82.93%)

11777 existing lines in 624 files now uncovered.

16984 of 47499 relevant lines covered (35.76%)

0.36 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/trashfolder/TrashFolderPathCollectionField.java
1
package com.box.sdkgen.schemas.trashfile;
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 TrashFilePathCollectionField extends SerializableObject {
11

12
  @JsonProperty("total_count")
13
  protected final long totalCount;
14

15
  protected final List<TrashFilePathCollectionEntriesField> entries;
16

17
  public TrashFilePathCollectionField(
18
      @JsonProperty("total_count") long totalCount,
19
      @JsonProperty("entries") List<TrashFilePathCollectionEntriesField> entries) {
20
    super();
1✔
21
    this.totalCount = totalCount;
1✔
22
    this.entries = entries;
1✔
23
  }
1✔
24

25
  public long getTotalCount() {
UNCOV
26
    return totalCount;
×
27
  }
28

29
  public List<TrashFilePathCollectionEntriesField> getEntries() {
UNCOV
30
    return entries;
×
31
  }
32

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

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

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