• 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/archives/GetArchivesV2025R0QueryParams.java
1
package com.box.sdkgen.managers.archives;
2

3
public class GetArchivesV2025R0QueryParams {
4

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

8
  /**
9
   * Defines the position marker at which to begin returning results. This is used when paginating
10
   * using marker-based pagination.
11
   */
12
  public String marker;
13

14
  public GetArchivesV2025R0QueryParams() {}
×
15

16
  protected GetArchivesV2025R0QueryParams(Builder builder) {
1✔
17
    this.limit = builder.limit;
1✔
18
    this.marker = builder.marker;
1✔
19
  }
1✔
20

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

25
  public String getMarker() {
26
    return marker;
1✔
27
  }
28

29
  public static class Builder {
1✔
30

31
    protected Long limit;
32

33
    protected String marker;
34

35
    public Builder limit(Long limit) {
36
      this.limit = limit;
1✔
37
      return this;
1✔
38
    }
39

40
    public Builder marker(String marker) {
41
      this.marker = marker;
×
42
      return this;
×
43
    }
44

45
    public GetArchivesV2025R0QueryParams build() {
46
      return new GetArchivesV2025R0QueryParams(this);
1✔
47
    }
48
  }
49
}
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