• 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.08
/src/main/java/com/box/sdkgen/managers/memberships/GetGroupMembershipsQueryParams.java
1
package com.box.sdkgen.managers.memberships;
2

3
public class GetGroupMembershipsQueryParams {
4

5
  /** The maximum number of items to return per page. */
6
  public Long limit;
7

8
  /**
9
   * The offset of the item at which to begin the response.
10
   *
11
   * <p>Queries with offset parameter value exceeding 10000 will be rejected with a 400 response.
12
   */
13
  public Long offset;
14

15
  public GetGroupMembershipsQueryParams() {}
1✔
16

17
  protected GetGroupMembershipsQueryParams(Builder builder) {
×
18
    this.limit = builder.limit;
×
19
    this.offset = builder.offset;
×
20
  }
×
21

22
  public Long getLimit() {
23
    return limit;
1✔
24
  }
25

26
  public Long getOffset() {
27
    return offset;
1✔
28
  }
29

30
  public static class Builder {
×
31

32
    protected Long limit;
33

34
    protected Long offset;
35

36
    public Builder limit(Long limit) {
37
      this.limit = limit;
×
38
      return this;
×
39
    }
40

41
    public Builder offset(Long offset) {
42
      this.offset = offset;
×
43
      return this;
×
44
    }
45

46
    public GetGroupMembershipsQueryParams build() {
47
      return new GetGroupMembershipsQueryParams(this);
×
48
    }
49
  }
50
}
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