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

3
public class GetHubItemsV2025R0QueryParams {
4

5
  /**
6
   * The unique identifier that represent a hub.
7
   *
8
   * <p>The ID for any hub can be determined by visiting this hub in the web application and copying
9
   * the ID from the URL. For example, for the URL `https://*.app.box.com/hubs/123` the `hub_id` is
10
   * `123`.
11
   */
12
  public final String hubId;
13

14
  /**
15
   * Defines the position marker at which to begin returning results. This is used when paginating
16
   * using marker-based pagination.
17
   *
18
   * <p>This requires `usemarker` to be set to `true`.
19
   */
20
  public String marker;
21

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

25
  public GetHubItemsV2025R0QueryParams(String hubId) {
×
26
    this.hubId = hubId;
×
27
  }
×
28

29
  protected GetHubItemsV2025R0QueryParams(Builder builder) {
×
30
    this.hubId = builder.hubId;
×
31
    this.marker = builder.marker;
×
32
    this.limit = builder.limit;
×
33
  }
×
34

35
  public String getHubId() {
36
    return hubId;
×
37
  }
38

39
  public String getMarker() {
40
    return marker;
×
41
  }
42

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

47
  public static class Builder {
48

49
    protected final String hubId;
50

51
    protected String marker;
52

53
    protected Long limit;
54

55
    public Builder(String hubId) {
×
56
      this.hubId = hubId;
×
57
    }
×
58

59
    public Builder marker(String marker) {
60
      this.marker = marker;
×
61
      return this;
×
62
    }
63

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

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