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

box / box-java-sdk-gen / #519

05 Sep 2025 11:11AM UTC coverage: 36.589% (-1.6%) from 38.212%
#519

push

github

web-flow
docs: Brand Hubs as Box Hubs (box/box-openapi#553) (#435)

18347 of 50144 relevant lines covered (36.59%)

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/hubs/GetHubsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubs;
2

3
import com.box.sdkgen.serialization.json.EnumWrapper;
4

5
public class GetHubsV2025R0QueryParams {
6

7
  public String query;
8

9
  public String scope;
10

11
  public String sort;
12

13
  public EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction;
14

15
  public String marker;
16

17
  public Long limit;
18

19
  public GetHubsV2025R0QueryParams() {}
×
20

21
  protected GetHubsV2025R0QueryParams(Builder builder) {
×
22
    this.query = builder.query;
×
23
    this.scope = builder.scope;
×
24
    this.sort = builder.sort;
×
25
    this.direction = builder.direction;
×
26
    this.marker = builder.marker;
×
27
    this.limit = builder.limit;
×
28
  }
×
29

30
  public String getQuery() {
31
    return query;
×
32
  }
33

34
  public String getScope() {
35
    return scope;
×
36
  }
37

38
  public String getSort() {
39
    return sort;
×
40
  }
41

42
  public EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> getDirection() {
43
    return direction;
×
44
  }
45

46
  public String getMarker() {
47
    return marker;
×
48
  }
49

50
  public Long getLimit() {
51
    return limit;
×
52
  }
53

54
  public static class Builder {
×
55

56
    protected String query;
57

58
    protected String scope;
59

60
    protected String sort;
61

62
    protected EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction;
63

64
    protected String marker;
65

66
    protected Long limit;
67

68
    public Builder query(String query) {
69
      this.query = query;
×
70
      return this;
×
71
    }
72

73
    public Builder scope(String scope) {
74
      this.scope = scope;
×
75
      return this;
×
76
    }
77

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

83
    public Builder direction(GetHubsV2025R0QueryParamsDirectionField direction) {
84
      this.direction = new EnumWrapper<GetHubsV2025R0QueryParamsDirectionField>(direction);
×
85
      return this;
×
86
    }
87

88
    public Builder direction(EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction) {
89
      this.direction = direction;
×
90
      return this;
×
91
    }
92

93
    public Builder marker(String marker) {
94
      this.marker = marker;
×
95
      return this;
×
96
    }
97

98
    public Builder limit(Long limit) {
99
      this.limit = limit;
×
100
      return this;
×
101
    }
102

103
    public GetHubsV2025R0QueryParams build() {
104
      return new GetHubsV2025R0QueryParams(this);
×
105
    }
106
  }
107
}
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