• 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

10.81
/src/main/java/com/box/sdkgen/schemas/aimultipleagentresponse/AiMultipleAgentResponse.java
1
package com.box.sdkgen.schemas.aimultipleagentresponse;
2

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

12
@JsonFilter("nullablePropertyFilter")
13
public class AiMultipleAgentResponse extends SerializableObject {
14

15
  protected Long limit;
16

17
  @JsonProperty("next_marker")
18
  @Nullable
19
  protected String nextMarker;
20

21
  @JsonProperty("prev_marker")
22
  @Nullable
23
  protected String prevMarker;
24

25
  protected final List<AiSingleAgentResponseFull> entries;
26

27
  public AiMultipleAgentResponse(@JsonProperty("entries") List<AiSingleAgentResponseFull> entries) {
28
    super();
1✔
29
    this.entries = entries;
1✔
30
  }
1✔
31

32
  protected AiMultipleAgentResponse(Builder builder) {
UNCOV
33
    super();
×
UNCOV
34
    this.limit = builder.limit;
×
35
    this.nextMarker = builder.nextMarker;
×
UNCOV
36
    this.prevMarker = builder.prevMarker;
×
UNCOV
37
    this.entries = builder.entries;
×
UNCOV
38
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
39
  }
×
40

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

45
  public String getNextMarker() {
UNCOV
46
    return nextMarker;
×
47
  }
48

49
  public String getPrevMarker() {
UNCOV
50
    return prevMarker;
×
51
  }
52

53
  public List<AiSingleAgentResponseFull> getEntries() {
54
    return entries;
1✔
55
  }
56

57
  @Override
58
  public boolean equals(Object o) {
59
    if (this == o) {
×
60
      return true;
×
61
    }
62
    if (o == null || getClass() != o.getClass()) {
×
UNCOV
63
      return false;
×
64
    }
UNCOV
65
    AiMultipleAgentResponse casted = (AiMultipleAgentResponse) o;
×
UNCOV
66
    return Objects.equals(limit, casted.limit)
×
67
        && Objects.equals(nextMarker, casted.nextMarker)
×
UNCOV
68
        && Objects.equals(prevMarker, casted.prevMarker)
×
UNCOV
69
        && Objects.equals(entries, casted.entries);
×
70
  }
71

72
  @Override
73
  public int hashCode() {
UNCOV
74
    return Objects.hash(limit, nextMarker, prevMarker, entries);
×
75
  }
76

77
  @Override
78
  public String toString() {
UNCOV
79
    return "AiMultipleAgentResponse{"
×
80
        + "limit='"
81
        + limit
82
        + '\''
83
        + ", "
84
        + "nextMarker='"
85
        + nextMarker
86
        + '\''
87
        + ", "
88
        + "prevMarker='"
89
        + prevMarker
90
        + '\''
91
        + ", "
92
        + "entries='"
93
        + entries
94
        + '\''
95
        + "}";
96
  }
97

98
  public static class Builder extends NullableFieldTracker {
99

100
    protected Long limit;
101

102
    protected String nextMarker;
103

104
    protected String prevMarker;
105

106
    protected final List<AiSingleAgentResponseFull> entries;
107

108
    public Builder(List<AiSingleAgentResponseFull> entries) {
UNCOV
109
      super();
×
UNCOV
110
      this.entries = entries;
×
111
    }
×
112

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

118
    public Builder nextMarker(String nextMarker) {
UNCOV
119
      this.nextMarker = nextMarker;
×
UNCOV
120
      this.markNullableFieldAsSet("next_marker");
×
121
      return this;
×
122
    }
123

124
    public Builder prevMarker(String prevMarker) {
UNCOV
125
      this.prevMarker = prevMarker;
×
UNCOV
126
      this.markNullableFieldAsSet("prev_marker");
×
UNCOV
127
      return this;
×
128
    }
129

130
    public AiMultipleAgentResponse build() {
UNCOV
131
      return new AiMultipleAgentResponse(this);
×
132
    }
133
  }
134
}
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