• 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/devicepinners/DevicePinners.java
1
package com.box.sdkgen.schemas.devicepinners;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.box.sdkgen.schemas.devicepinner.DevicePinner;
6
import com.fasterxml.jackson.annotation.JsonFilter;
7
import com.fasterxml.jackson.annotation.JsonProperty;
8
import java.util.List;
9
import java.util.Objects;
10

11
@JsonFilter("nullablePropertyFilter")
12
public class DevicePinners extends SerializableObject {
13

14
  protected List<DevicePinner> entries;
15

16
  protected Long limit;
17

18
  @JsonProperty("next_marker")
19
  protected Long nextMarker;
20

21
  protected List<DevicePinnersOrderField> order;
22

23
  public DevicePinners() {
UNCOV
24
    super();
×
UNCOV
25
  }
×
26

27
  protected DevicePinners(Builder builder) {
28
    super();
×
29
    this.entries = builder.entries;
×
30
    this.limit = builder.limit;
×
31
    this.nextMarker = builder.nextMarker;
×
32
    this.order = builder.order;
×
33
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
34
  }
×
35

36
  public List<DevicePinner> getEntries() {
UNCOV
37
    return entries;
×
38
  }
39

40
  public Long getLimit() {
41
    return limit;
×
42
  }
43

44
  public Long getNextMarker() {
45
    return nextMarker;
×
46
  }
47

48
  public List<DevicePinnersOrderField> getOrder() {
49
    return order;
×
50
  }
51

52
  @Override
53
  public boolean equals(Object o) {
54
    if (this == o) {
×
55
      return true;
×
56
    }
57
    if (o == null || getClass() != o.getClass()) {
×
58
      return false;
×
59
    }
60
    DevicePinners casted = (DevicePinners) o;
×
61
    return Objects.equals(entries, casted.entries)
×
62
        && Objects.equals(limit, casted.limit)
×
63
        && Objects.equals(nextMarker, casted.nextMarker)
×
64
        && Objects.equals(order, casted.order);
×
65
  }
66

67
  @Override
68
  public int hashCode() {
69
    return Objects.hash(entries, limit, nextMarker, order);
×
70
  }
71

72
  @Override
73
  public String toString() {
74
    return "DevicePinners{"
×
75
        + "entries='"
76
        + entries
77
        + '\''
78
        + ", "
79
        + "limit='"
80
        + limit
81
        + '\''
82
        + ", "
83
        + "nextMarker='"
84
        + nextMarker
85
        + '\''
86
        + ", "
87
        + "order='"
88
        + order
89
        + '\''
90
        + "}";
91
  }
92

93
  public static class Builder extends NullableFieldTracker {
×
94

95
    protected List<DevicePinner> entries;
96

97
    protected Long limit;
98

99
    protected Long nextMarker;
100

101
    protected List<DevicePinnersOrderField> order;
102

103
    public Builder entries(List<DevicePinner> entries) {
104
      this.entries = entries;
×
105
      return this;
×
106
    }
107

108
    public Builder limit(Long limit) {
109
      this.limit = limit;
×
110
      return this;
×
111
    }
112

113
    public Builder nextMarker(Long nextMarker) {
114
      this.nextMarker = nextMarker;
×
115
      return this;
×
116
    }
117

118
    public Builder order(List<DevicePinnersOrderField> order) {
119
      this.order = order;
×
120
      return this;
×
121
    }
122

123
    public DevicePinners build() {
124
      return new DevicePinners(this);
×
125
    }
126
  }
127
}
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