• 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

23.81
/src/main/java/com/box/sdkgen/managers/groups/GetGroupsQueryParams.java
1
package com.box.sdkgen.managers.groups;
2

3
import java.util.List;
4

5
public class GetGroupsQueryParams {
6

7
  /** Limits the results to only groups whose `name` starts with the search term. */
8
  public String filterTerm;
9

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

20
  /** The maximum number of items to return per page. */
21
  public Long limit;
22

23
  /**
24
   * The offset of the item at which to begin the response.
25
   *
26
   * <p>Queries with offset parameter value exceeding 10000 will be rejected with a 400 response.
27
   */
28
  public Long offset;
29

30
  public GetGroupsQueryParams() {}
1✔
31

32
  protected GetGroupsQueryParams(Builder builder) {
×
33
    this.filterTerm = builder.filterTerm;
×
34
    this.fields = builder.fields;
×
35
    this.limit = builder.limit;
×
36
    this.offset = builder.offset;
×
37
  }
×
38

39
  public String getFilterTerm() {
40
    return filterTerm;
1✔
41
  }
42

43
  public List<String> getFields() {
44
    return fields;
1✔
45
  }
46

47
  public Long getLimit() {
48
    return limit;
1✔
49
  }
50

51
  public Long getOffset() {
52
    return offset;
1✔
53
  }
54

55
  public static class Builder {
×
56

57
    protected String filterTerm;
58

59
    protected List<String> fields;
60

61
    protected Long limit;
62

63
    protected Long offset;
64

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

70
    public Builder fields(List<String> fields) {
71
      this.fields = fields;
×
72
      return this;
×
73
    }
74

75
    public Builder limit(Long limit) {
76
      this.limit = limit;
×
77
      return this;
×
78
    }
79

80
    public Builder offset(Long offset) {
81
      this.offset = offset;
×
82
      return this;
×
83
    }
84

85
    public GetGroupsQueryParams build() {
86
      return new GetGroupsQueryParams(this);
×
87
    }
88
  }
89
}
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