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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/useravatar/UserAvatarPicUrlsField.java
1
package com.box.sdkgen.schemas.useravatar;
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 UserAvatarPicUrlsField extends SerializableObject {
10

11
  protected String small;
12

13
  protected String large;
14

15
  protected String preview;
16

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

21
  protected UserAvatarPicUrlsField(Builder builder) {
22
    super();
×
23
    this.small = builder.small;
×
24
    this.large = builder.large;
×
25
    this.preview = builder.preview;
×
26
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
27
  }
×
28

29
  public String getSmall() {
UNCOV
30
    return small;
×
31
  }
32

33
  public String getLarge() {
UNCOV
34
    return large;
×
35
  }
36

37
  public String getPreview() {
UNCOV
38
    return preview;
×
39
  }
40

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

55
  @Override
56
  public int hashCode() {
57
    return Objects.hash(small, large, preview);
×
58
  }
59

60
  @Override
61
  public String toString() {
62
    return "UserAvatarPicUrlsField{"
×
63
        + "small='"
64
        + small
65
        + '\''
66
        + ", "
67
        + "large='"
68
        + large
69
        + '\''
70
        + ", "
71
        + "preview='"
72
        + preview
73
        + '\''
74
        + "}";
75
  }
76

77
  public static class Builder extends NullableFieldTracker {
×
78

79
    protected String small;
80

81
    protected String large;
82

83
    protected String preview;
84

85
    public Builder small(String small) {
86
      this.small = small;
×
87
      return this;
×
88
    }
89

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

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

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