• 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/FileFullRepresentationsEntriesField.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 FileFullRepresentationsEntriesField extends SerializableObject {
10

11
  /** An object containing the URL that can be used to actually fetch the representation. */
12
  protected FileFullRepresentationsEntriesContentField content;
13

14
  /** An object containing the URL that can be used to fetch more info on this representation. */
15
  protected FileFullRepresentationsEntriesInfoField info;
16

17
  /** An object containing the size and type of this presentation. */
18
  protected FileFullRepresentationsEntriesPropertiesField properties;
19

20
  /** Indicates the file type of the returned representation. */
21
  protected String representation;
22

23
  /** An object containing the status of this representation. */
24
  protected FileFullRepresentationsEntriesStatusField status;
25

26
  public FileFullRepresentationsEntriesField() {
27
    super();
×
28
  }
×
29

30
  protected FileFullRepresentationsEntriesField(Builder builder) {
31
    super();
×
32
    this.content = builder.content;
×
33
    this.info = builder.info;
×
34
    this.properties = builder.properties;
×
35
    this.representation = builder.representation;
×
36
    this.status = builder.status;
×
37
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
38
  }
×
39

40
  public FileFullRepresentationsEntriesContentField getContent() {
41
    return content;
×
42
  }
43

44
  public FileFullRepresentationsEntriesInfoField getInfo() {
45
    return info;
×
46
  }
47

48
  public FileFullRepresentationsEntriesPropertiesField getProperties() {
49
    return properties;
×
50
  }
51

52
  public String getRepresentation() {
53
    return representation;
×
54
  }
55

56
  public FileFullRepresentationsEntriesStatusField getStatus() {
57
    return status;
×
58
  }
59

60
  @Override
61
  public boolean equals(Object o) {
62
    if (this == o) {
×
63
      return true;
×
64
    }
65
    if (o == null || getClass() != o.getClass()) {
×
66
      return false;
×
67
    }
68
    FileFullRepresentationsEntriesField casted = (FileFullRepresentationsEntriesField) o;
×
69
    return Objects.equals(content, casted.content)
×
70
        && Objects.equals(info, casted.info)
×
71
        && Objects.equals(properties, casted.properties)
×
72
        && Objects.equals(representation, casted.representation)
×
73
        && Objects.equals(status, casted.status);
×
74
  }
75

76
  @Override
77
  public int hashCode() {
78
    return Objects.hash(content, info, properties, representation, status);
×
79
  }
80

81
  @Override
82
  public String toString() {
83
    return "FileFullRepresentationsEntriesField{"
×
84
        + "content='"
85
        + content
86
        + '\''
87
        + ", "
88
        + "info='"
89
        + info
90
        + '\''
91
        + ", "
92
        + "properties='"
93
        + properties
94
        + '\''
95
        + ", "
96
        + "representation='"
97
        + representation
98
        + '\''
99
        + ", "
100
        + "status='"
101
        + status
102
        + '\''
103
        + "}";
104
  }
105

106
  public static class Builder extends NullableFieldTracker {
×
107

108
    protected FileFullRepresentationsEntriesContentField content;
109

110
    protected FileFullRepresentationsEntriesInfoField info;
111

112
    protected FileFullRepresentationsEntriesPropertiesField properties;
113

114
    protected String representation;
115

116
    protected FileFullRepresentationsEntriesStatusField status;
117

118
    public Builder content(FileFullRepresentationsEntriesContentField content) {
119
      this.content = content;
×
120
      return this;
×
121
    }
122

123
    public Builder info(FileFullRepresentationsEntriesInfoField info) {
124
      this.info = info;
×
125
      return this;
×
126
    }
127

128
    public Builder properties(FileFullRepresentationsEntriesPropertiesField properties) {
129
      this.properties = properties;
×
130
      return this;
×
131
    }
132

133
    public Builder representation(String representation) {
134
      this.representation = representation;
×
135
      return this;
×
136
    }
137

138
    public Builder status(FileFullRepresentationsEntriesStatusField status) {
139
      this.status = status;
×
140
      return this;
×
141
    }
142

143
    public FileFullRepresentationsEntriesField build() {
144
      return new FileFullRepresentationsEntriesField(this);
×
145
    }
146
  }
147
}
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