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

box / box-java-sdk / #5838

16 Dec 2025 01:57PM UTC coverage: 12.903% (-0.4%) from 13.282%
#5838

Pull #1633

github

web-flow
Merge 39eadee31 into af4861f83
Pull Request #1633: feat(boxsdkgen): Treat nullable fields as Optional (box/box-codegen#906)

0 of 1897 new or added lines in 73 files covered. (0.0%)

19 existing lines in 10 files now uncovered.

8374 of 64898 relevant lines covered (12.9%)

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

3
public class GetMetadataTaxonomiesQueryParams {
4

5
  /**
6
   * Defines the position marker at which to begin returning results. This is used when paginating
7
   * using marker-based pagination.
8
   *
9
   * <p>This requires `usemarker` to be set to `true`.
10
   */
11
  public String marker;
12

13
  /** The maximum number of items to return per page. */
14
  public Long limit;
15

NEW
16
  public GetMetadataTaxonomiesQueryParams() {}
×
17

NEW
18
  protected GetMetadataTaxonomiesQueryParams(Builder builder) {
×
NEW
19
    this.marker = builder.marker;
×
NEW
20
    this.limit = builder.limit;
×
NEW
21
  }
×
22

23
  public String getMarker() {
NEW
24
    return marker;
×
25
  }
26

27
  public Long getLimit() {
NEW
28
    return limit;
×
29
  }
30

NEW
31
  public static class Builder {
×
32

33
    protected String marker;
34

35
    protected Long limit;
36

37
    public Builder marker(String marker) {
NEW
38
      this.marker = marker;
×
NEW
39
      return this;
×
40
    }
41

42
    public Builder limit(Long limit) {
NEW
43
      this.limit = limit;
×
NEW
44
      return this;
×
45
    }
46

47
    public GetMetadataTaxonomiesQueryParams build() {
NEW
48
      return new GetMetadataTaxonomiesQueryParams(this);
×
49
    }
50
  }
51
}
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