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

box / box-java-sdk / #6370

19 Mar 2026 11:44AM UTC coverage: 12.801% (-0.01%) from 12.813%
#6370

Pull #1740

github

web-flow
Merge ca1892ead into fb1714773
Pull Request #1740: fix(boxsdkgen): feat: Add Hub Document API (part 2) (box/box-openapi#588)

0 of 63 new or added lines in 5 files covered. (0.0%)

2 existing lines in 2 files now uncovered.

8368 of 65370 relevant lines covered (12.8%)

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/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
   * The unique identifier of an item list block within the Box Hub.
16
   *
17
   * <p>When provided, the response will only include items that belong to the specified item list,
18
   * allowing you to filter results to items on a specific page or section.
19
   */
20
  public String parentId;
21

22
  /**
23
   * Defines the position marker at which to begin returning results. This is used when paginating
24
   * using marker-based pagination.
25
   *
26
   * <p>This requires `usemarker` to be set to `true`.
27
   */
28
  public String marker;
29

30
  /** The maximum number of items to return per page. */
31
  public Long limit;
32

33
  public GetHubItemsV2025R0QueryParams(String hubId) {
×
34
    this.hubId = hubId;
×
35
  }
×
36

37
  protected GetHubItemsV2025R0QueryParams(Builder builder) {
×
38
    this.hubId = builder.hubId;
×
NEW
39
    this.parentId = builder.parentId;
×
40
    this.marker = builder.marker;
×
41
    this.limit = builder.limit;
×
42
  }
×
43

44
  public String getHubId() {
45
    return hubId;
×
46
  }
47

48
  public String getParentId() {
NEW
49
    return parentId;
×
50
  }
51

52
  public String getMarker() {
53
    return marker;
×
54
  }
55

56
  public Long getLimit() {
57
    return limit;
×
58
  }
59

60
  public static class Builder {
61

62
    protected final String hubId;
63

64
    protected String parentId;
65

66
    protected String marker;
67

68
    protected Long limit;
69

70
    public Builder(String hubId) {
×
71
      this.hubId = hubId;
×
72
    }
×
73

74
    public Builder parentId(String parentId) {
NEW
75
      this.parentId = parentId;
×
NEW
76
      return this;
×
77
    }
78

79
    public Builder marker(String marker) {
80
      this.marker = marker;
×
81
      return this;
×
82
    }
83

84
    public Builder limit(Long limit) {
85
      this.limit = limit;
×
86
      return this;
×
87
    }
88

89
    public GetHubItemsV2025R0QueryParams build() {
90
      return new GetHubItemsV2025R0QueryParams(this);
×
91
    }
92
  }
93
}
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