• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

box / box-java-sdk / #6339

17 Mar 2026 12:43PM UTC coverage: 12.686%. First build
#6339

Pull #1735

github

web-flow
Merge f393cf908 into bacc78716
Pull Request #1735: feat(boxsdkgen): Add Hub Document API (box/box-openapi#587)

0 of 662 new or added lines in 25 files covered. (0.0%)

8368 of 65961 relevant lines covered (12.69%)

0.13 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/hubdocument/GetHubDocumentPagesV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubdocument;
2

3
public class GetHubDocumentPagesV2025R0QueryParams {
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
  public String marker;
19

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

NEW
23
  public GetHubDocumentPagesV2025R0QueryParams(String hubId) {
×
NEW
24
    this.hubId = hubId;
×
NEW
25
  }
×
26

NEW
27
  protected GetHubDocumentPagesV2025R0QueryParams(Builder builder) {
×
NEW
28
    this.hubId = builder.hubId;
×
NEW
29
    this.marker = builder.marker;
×
NEW
30
    this.limit = builder.limit;
×
NEW
31
  }
×
32

33
  public String getHubId() {
NEW
34
    return hubId;
×
35
  }
36

37
  public String getMarker() {
NEW
38
    return marker;
×
39
  }
40

41
  public Long getLimit() {
NEW
42
    return limit;
×
43
  }
44

45
  public static class Builder {
46

47
    protected final String hubId;
48

49
    protected String marker;
50

51
    protected Long limit;
52

NEW
53
    public Builder(String hubId) {
×
NEW
54
      this.hubId = hubId;
×
NEW
55
    }
×
56

57
    public Builder marker(String marker) {
NEW
58
      this.marker = marker;
×
NEW
59
      return this;
×
60
    }
61

62
    public Builder limit(Long limit) {
NEW
63
      this.limit = limit;
×
NEW
64
      return this;
×
65
    }
66

67
    public GetHubDocumentPagesV2025R0QueryParams build() {
NEW
68
      return new GetHubDocumentPagesV2025R0QueryParams(this);
×
69
    }
70
  }
71
}
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