• 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/FileFullRepresentationsEntriesPropertiesField.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.Objects;
7

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

11
  /** The width by height size of this representation in pixels. */
12
  protected String dimensions;
13

14
  /** Indicates if the representation is build up out of multiple pages. */
15
  protected String paged;
16

17
  /** Indicates if the representation can be used as a thumbnail of the file. */
18
  protected String thumb;
19

20
  public FileFullRepresentationsEntriesPropertiesField() {
21
    super();
×
22
  }
×
23

24
  protected FileFullRepresentationsEntriesPropertiesField(Builder builder) {
25
    super();
×
26
    this.dimensions = builder.dimensions;
×
27
    this.paged = builder.paged;
×
28
    this.thumb = builder.thumb;
×
29
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
30
  }
×
31

32
  public String getDimensions() {
33
    return dimensions;
×
34
  }
35

36
  public String getPaged() {
37
    return paged;
×
38
  }
39

40
  public String getThumb() {
41
    return thumb;
×
42
  }
43

44
  @Override
45
  public boolean equals(Object o) {
46
    if (this == o) {
×
47
      return true;
×
48
    }
49
    if (o == null || getClass() != o.getClass()) {
×
50
      return false;
×
51
    }
52
    FileFullRepresentationsEntriesPropertiesField casted =
×
53
        (FileFullRepresentationsEntriesPropertiesField) o;
54
    return Objects.equals(dimensions, casted.dimensions)
×
55
        && Objects.equals(paged, casted.paged)
×
56
        && Objects.equals(thumb, casted.thumb);
×
57
  }
58

59
  @Override
60
  public int hashCode() {
61
    return Objects.hash(dimensions, paged, thumb);
×
62
  }
63

64
  @Override
65
  public String toString() {
66
    return "FileFullRepresentationsEntriesPropertiesField{"
×
67
        + "dimensions='"
68
        + dimensions
69
        + '\''
70
        + ", "
71
        + "paged='"
72
        + paged
73
        + '\''
74
        + ", "
75
        + "thumb='"
76
        + thumb
77
        + '\''
78
        + "}";
79
  }
80

81
  public static class Builder extends NullableFieldTracker {
×
82

83
    protected String dimensions;
84

85
    protected String paged;
86

87
    protected String thumb;
88

89
    public Builder dimensions(String dimensions) {
90
      this.dimensions = dimensions;
×
91
      return this;
×
92
    }
93

94
    public Builder paged(String paged) {
95
      this.paged = paged;
×
96
      return this;
×
97
    }
98

99
    public Builder thumb(String thumb) {
100
      this.thumb = thumb;
×
101
      return this;
×
102
    }
103

104
    public FileFullRepresentationsEntriesPropertiesField build() {
105
      return new FileFullRepresentationsEntriesPropertiesField(this);
×
106
    }
107
  }
108
}
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