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

box / box-java-sdk-gen / #243

23 Jun 2025 12:23PM UTC coverage: 35.94% (+0.2%) from 35.722%
#243

Pull #344

github

web-flow
Merge 9eec99550 into 8c4ecda2f
Pull Request #344: chore: Update .codegen.json with commit hash of codegen and openapi spec

446 of 1240 new or added lines in 43 files covered. (35.97%)

8 existing lines in 5 files now uncovered.

16713 of 46502 relevant lines covered (35.94%)

0.36 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/main/java/com/box/sdkgen/managers/hubs/GetEnterpriseHubsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubs;
2

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

5
public class GetEnterpriseHubsV2025R0QueryParams {
6

7
  public String query;
8

9
  public String sort;
10

11
  public EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction;
12

13
  public String marker;
14

15
  public Long limit;
16

NEW
17
  public GetEnterpriseHubsV2025R0QueryParams() {}
×
18

19
  protected GetEnterpriseHubsV2025R0QueryParams(Builder builder) {
1✔
20
    this.query = builder.query;
1✔
21
    this.sort = builder.sort;
1✔
22
    this.direction = builder.direction;
1✔
23
    this.marker = builder.marker;
1✔
24
    this.limit = builder.limit;
1✔
25
  }
1✔
26

27
  public String getQuery() {
28
    return query;
1✔
29
  }
30

31
  public String getSort() {
32
    return sort;
1✔
33
  }
34

35
  public EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> getDirection() {
36
    return direction;
1✔
37
  }
38

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

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

47
  public static class Builder {
1✔
48

49
    protected String query;
50

51
    protected String sort;
52

53
    protected EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction;
54

55
    protected String marker;
56

57
    protected Long limit;
58

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

64
    public Builder sort(String sort) {
65
      this.sort = sort;
1✔
66
      return this;
1✔
67
    }
68

69
    public Builder direction(GetEnterpriseHubsV2025R0QueryParamsDirectionField direction) {
70
      this.direction =
1✔
71
          new EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField>(direction);
72
      return this;
1✔
73
    }
74

75
    public Builder direction(
76
        EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction) {
NEW
77
      this.direction = direction;
×
NEW
78
      return this;
×
79
    }
80

81
    public Builder marker(String marker) {
NEW
82
      this.marker = marker;
×
NEW
83
      return this;
×
84
    }
85

86
    public Builder limit(Long limit) {
NEW
87
      this.limit = limit;
×
NEW
88
      return this;
×
89
    }
90

91
    public GetEnterpriseHubsV2025R0QueryParams build() {
92
      return new GetEnterpriseHubsV2025R0QueryParams(this);
1✔
93
    }
94
  }
95
}
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