• 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

76.92
/src/main/java/com/box/sdkgen/managers/docgen/GetDocgenJobsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.docgen;
2

3
public class GetDocgenJobsV2025R0QueryParams {
4

5
  /**
6
   * Defines the position marker at which to begin returning results. This is used when paginating
7
   * using marker-based pagination.
8
   *
9
   * <p>This requires `usemarker` to be set to `true`.
10
   */
11
  public String marker;
12

13
  /** The maximum number of items to return per page. */
14
  public Long limit;
15

16
  public GetDocgenJobsV2025R0QueryParams() {}
×
17

18
  protected GetDocgenJobsV2025R0QueryParams(Builder builder) {
1✔
19
    this.marker = builder.marker;
1✔
20
    this.limit = builder.limit;
1✔
21
  }
1✔
22

23
  public String getMarker() {
24
    return marker;
1✔
25
  }
26

27
  public Long getLimit() {
28
    return limit;
1✔
29
  }
30

31
  public static class Builder {
1✔
32

33
    protected String marker;
34

35
    protected Long limit;
36

37
    public Builder marker(String marker) {
38
      this.marker = marker;
×
39
      return this;
×
40
    }
41

42
    public Builder limit(Long limit) {
43
      this.limit = limit;
1✔
44
      return this;
1✔
45
    }
46

47
    public GetDocgenJobsV2025R0QueryParams build() {
48
      return new GetDocgenJobsV2025R0QueryParams(this);
1✔
49
    }
50
  }
51
}
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