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

box / box-java-sdk / #5076

07 Oct 2025 12:35PM UTC coverage: 37.132% (+0.007%) from 37.125%
#5076

push

github

web-flow
test: Change `Event.additionalDetails` field assertion in events test (box/box-codegen#858) (#1491)

18454 of 49699 relevant lines covered (37.13%)

0.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/box/sdkgen/managers/collections/GetCollectionsQueryParams.java
1
package com.box.sdkgen.managers.collections;
2

3
import java.util.List;
4

5
public class GetCollectionItemsQueryParams {
6

7
  /**
8
   * A comma-separated list of attributes to include in the response. This can be used to request
9
   * fields that are not normally returned in a standard response.
10
   *
11
   * <p>Be aware that specifying this parameter will have the effect that none of the standard
12
   * fields are returned in the response unless explicitly specified, instead only fields for the
13
   * mini representation are returned, additional to the fields requested.
14
   */
15
  public List<String> fields;
16

17
  /**
18
   * The offset of the item at which to begin the response.
19
   *
20
   * <p>Queries with offset parameter value exceeding 10000 will be rejected with a 400 response.
21
   */
22
  public Long offset;
23

24
  /** The maximum number of items to return per page. */
25
  public Long limit;
26

27
  public GetCollectionItemsQueryParams() {}
×
28

29
  protected GetCollectionItemsQueryParams(Builder builder) {
×
30
    this.fields = builder.fields;
×
31
    this.offset = builder.offset;
×
32
    this.limit = builder.limit;
×
33
  }
×
34

35
  public List<String> getFields() {
36
    return fields;
×
37
  }
38

39
  public Long getOffset() {
40
    return offset;
×
41
  }
42

43
  public Long getLimit() {
44
    return limit;
×
45
  }
46

47
  public static class Builder {
×
48

49
    protected List<String> fields;
50

51
    protected Long offset;
52

53
    protected Long limit;
54

55
    public Builder fields(List<String> fields) {
56
      this.fields = fields;
×
57
      return this;
×
58
    }
59

60
    public Builder offset(Long offset) {
61
      this.offset = offset;
×
62
      return this;
×
63
    }
64

65
    public Builder limit(Long limit) {
66
      this.limit = limit;
×
67
      return this;
×
68
    }
69

70
    public GetCollectionItemsQueryParams build() {
71
      return new GetCollectionItemsQueryParams(this);
×
72
    }
73
  }
74
}
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