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

box / box-java-sdk-gen / #258

23 Jun 2025 02:39PM UTC coverage: 34.836% (-0.9%) from 35.719%
#258

push

github

web-flow
feat: add hubs API beta endpoints (box/box-openapi#531) (#341)

36 of 1240 new or added lines in 43 files covered. (2.9%)

9 existing lines in 4 files now uncovered.

16201 of 46506 relevant lines covered (34.84%)

0.35 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/hubcollaborations/GetHubCollaborationsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubcollaborations;
2

3
public class GetHubCollaborationsV2025R0QueryParams {
4

5
  public final String hubId;
6

7
  public String marker;
8

9
  public Long limit;
10

NEW
11
  public GetHubCollaborationsV2025R0QueryParams(String hubId) {
×
NEW
12
    this.hubId = hubId;
×
NEW
13
  }
×
14

NEW
15
  protected GetHubCollaborationsV2025R0QueryParams(Builder builder) {
×
NEW
16
    this.hubId = builder.hubId;
×
NEW
17
    this.marker = builder.marker;
×
NEW
18
    this.limit = builder.limit;
×
NEW
19
  }
×
20

21
  public String getHubId() {
NEW
22
    return hubId;
×
23
  }
24

25
  public String getMarker() {
NEW
26
    return marker;
×
27
  }
28

29
  public Long getLimit() {
NEW
30
    return limit;
×
31
  }
32

33
  public static class Builder {
34

35
    protected final String hubId;
36

37
    protected String marker;
38

39
    protected Long limit;
40

NEW
41
    public Builder(String hubId) {
×
NEW
42
      this.hubId = hubId;
×
NEW
43
    }
×
44

45
    public Builder marker(String marker) {
NEW
46
      this.marker = marker;
×
NEW
47
      return this;
×
48
    }
49

50
    public Builder limit(Long limit) {
NEW
51
      this.limit = limit;
×
NEW
52
      return this;
×
53
    }
54

55
    public GetHubCollaborationsV2025R0QueryParams build() {
NEW
56
      return new GetHubCollaborationsV2025R0QueryParams(this);
×
57
    }
58
  }
59
}
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