• 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/filemetadata/GetFileMetadataQueryParams.java
1
package com.box.sdkgen.managers.filemetadata;
2

3
public class GetFileMetadataQueryParams {
4

5
  /**
6
   * Taxonomy field values are returned in `API view` by default, meaning the value is represented
7
   * with a taxonomy node identifier. To retrieve the `Hydrated view`, where taxonomy values are
8
   * represented with the full taxonomy node information, set this parameter to `hydrated`. This is
9
   * the only supported value for this parameter.
10
   */
11
  public String view;
12

NEW
13
  public GetFileMetadataQueryParams() {}
×
14

NEW
15
  protected GetFileMetadataQueryParams(Builder builder) {
×
NEW
16
    this.view = builder.view;
×
NEW
17
  }
×
18

19
  public String getView() {
NEW
20
    return view;
×
21
  }
22

NEW
23
  public static class Builder {
×
24

25
    protected String view;
26

27
    public Builder view(String view) {
NEW
28
      this.view = view;
×
NEW
29
      return this;
×
30
    }
31

32
    public GetFileMetadataQueryParams build() {
NEW
33
      return new GetFileMetadataQueryParams(this);
×
34
    }
35
  }
36
}
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

© 2025 Coveralls, Inc