• 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/schemas/filefull/FileFullRepresentationsField.java
1
package com.box.sdkgen.schemas.filefull;
2

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

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

12
  /** A list of files. */
13
  protected List<FileFullRepresentationsEntriesField> entries;
14

15
  public FileFullRepresentationsField() {
16
    super();
×
17
  }
×
18

19
  protected FileFullRepresentationsField(Builder builder) {
20
    super();
×
21
    this.entries = builder.entries;
×
22
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
23
  }
×
24

25
  public List<FileFullRepresentationsEntriesField> getEntries() {
26
    return entries;
×
27
  }
28

29
  @Override
30
  public boolean equals(Object o) {
31
    if (this == o) {
×
32
      return true;
×
33
    }
34
    if (o == null || getClass() != o.getClass()) {
×
35
      return false;
×
36
    }
37
    FileFullRepresentationsField casted = (FileFullRepresentationsField) o;
×
38
    return Objects.equals(entries, casted.entries);
×
39
  }
40

41
  @Override
42
  public int hashCode() {
43
    return Objects.hash(entries);
×
44
  }
45

46
  @Override
47
  public String toString() {
48
    return "FileFullRepresentationsField{" + "entries='" + entries + '\'' + "}";
×
49
  }
50

51
  public static class Builder extends NullableFieldTracker {
×
52

53
    protected List<FileFullRepresentationsEntriesField> entries;
54

55
    public Builder entries(List<FileFullRepresentationsEntriesField> entries) {
56
      this.entries = entries;
×
57
      return this;
×
58
    }
59

60
    public FileFullRepresentationsField build() {
61
      return new FileFullRepresentationsField(this);
×
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