• 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/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
  protected String dimensions;
12

13
  protected String paged;
14

15
  protected String thumb;
16

17
  public FileFullRepresentationsEntriesPropertiesField() {
UNCOV
18
    super();
×
19
  }
×
20

21
  protected FileFullRepresentationsEntriesPropertiesField(Builder builder) {
22
    super();
×
23
    this.dimensions = builder.dimensions;
×
UNCOV
24
    this.paged = builder.paged;
×
UNCOV
25
    this.thumb = builder.thumb;
×
26
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
27
  }
×
28

29
  public String getDimensions() {
30
    return dimensions;
×
31
  }
32

33
  public String getPaged() {
34
    return paged;
×
35
  }
36

37
  public String getThumb() {
UNCOV
38
    return thumb;
×
39
  }
40

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

56
  @Override
57
  public int hashCode() {
UNCOV
58
    return Objects.hash(dimensions, paged, thumb);
×
59
  }
60

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

UNCOV
78
  public static class Builder extends NullableFieldTracker {
×
79

80
    protected String dimensions;
81

82
    protected String paged;
83

84
    protected String thumb;
85

86
    public Builder dimensions(String dimensions) {
UNCOV
87
      this.dimensions = dimensions;
×
88
      return this;
×
89
    }
90

91
    public Builder paged(String paged) {
UNCOV
92
      this.paged = paged;
×
93
      return this;
×
94
    }
95

96
    public Builder thumb(String thumb) {
UNCOV
97
      this.thumb = thumb;
×
98
      return this;
×
99
    }
100

101
    public FileFullRepresentationsEntriesPropertiesField build() {
UNCOV
102
      return new FileFullRepresentationsEntriesPropertiesField(this);
×
103
    }
104
  }
105
}
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