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

box / box-java-sdk-gen / #293

24 Jun 2025 01:20PM UTC coverage: 35.661% (+0.03%) from 35.632%
#293

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%)

11794 existing lines in 627 files now uncovered.

16937 of 47495 relevant lines covered (35.66%)

0.36 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
  protected FileFullRepresentationsEntriesContentField content;
12

13
  protected FileFullRepresentationsEntriesInfoField info;
14

15
  protected FileFullRepresentationsEntriesPropertiesField properties;
16

17
  protected String representation;
18

19
  protected FileFullRepresentationsEntriesStatusField status;
20

21
  public FileFullRepresentationsEntriesField() {
UNCOV
22
    super();
×
23
  }
×
24

25
  protected FileFullRepresentationsEntriesField(Builder builder) {
26
    super();
×
27
    this.content = builder.content;
×
28
    this.info = builder.info;
×
29
    this.properties = builder.properties;
×
UNCOV
30
    this.representation = builder.representation;
×
UNCOV
31
    this.status = builder.status;
×
32
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
33
  }
×
34

35
  public FileFullRepresentationsEntriesContentField getContent() {
36
    return content;
×
37
  }
38

39
  public FileFullRepresentationsEntriesInfoField getInfo() {
40
    return info;
×
41
  }
42

43
  public FileFullRepresentationsEntriesPropertiesField getProperties() {
44
    return properties;
×
45
  }
46

47
  public String getRepresentation() {
48
    return representation;
×
49
  }
50

51
  public FileFullRepresentationsEntriesStatusField getStatus() {
UNCOV
52
    return status;
×
53
  }
54

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

71
  @Override
72
  public int hashCode() {
UNCOV
73
    return Objects.hash(content, info, properties, representation, status);
×
74
  }
75

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

UNCOV
101
  public static class Builder extends NullableFieldTracker {
×
102

103
    protected FileFullRepresentationsEntriesContentField content;
104

105
    protected FileFullRepresentationsEntriesInfoField info;
106

107
    protected FileFullRepresentationsEntriesPropertiesField properties;
108

109
    protected String representation;
110

111
    protected FileFullRepresentationsEntriesStatusField status;
112

113
    public Builder content(FileFullRepresentationsEntriesContentField content) {
UNCOV
114
      this.content = content;
×
115
      return this;
×
116
    }
117

118
    public Builder info(FileFullRepresentationsEntriesInfoField info) {
UNCOV
119
      this.info = info;
×
120
      return this;
×
121
    }
122

123
    public Builder properties(FileFullRepresentationsEntriesPropertiesField properties) {
UNCOV
124
      this.properties = properties;
×
125
      return this;
×
126
    }
127

128
    public Builder representation(String representation) {
UNCOV
129
      this.representation = representation;
×
130
      return this;
×
131
    }
132

133
    public Builder status(FileFullRepresentationsEntriesStatusField status) {
UNCOV
134
      this.status = status;
×
135
      return this;
×
136
    }
137

138
    public FileFullRepresentationsEntriesField build() {
UNCOV
139
      return new FileFullRepresentationsEntriesField(this);
×
140
    }
141
  }
142
}
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