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

box / box-java-sdk / #5076

07 Oct 2025 12:35PM UTC coverage: 37.132% (+0.007%) from 37.125%
#5076

push

github

web-flow
test: Change `Event.additionalDetails` field assertion in events test (box/box-codegen#858) (#1491)

18454 of 49699 relevant lines covered (37.13%)

0.37 hits per line

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

18.18
/src/main/java/com/box/sdkgen/managers/termsofservices/GetTermsOfServiceQueryParams.java
1
package com.box.sdkgen.managers.termsofservices;
2

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

5
public class GetTermsOfServiceQueryParams {
6

7
  /** Limits the results to the terms of service of the given type. */
8
  public EnumWrapper<GetTermsOfServiceQueryParamsTosTypeField> tosType;
9

10
  public GetTermsOfServiceQueryParams() {}
1✔
11

12
  protected GetTermsOfServiceQueryParams(Builder builder) {
×
13
    this.tosType = builder.tosType;
×
14
  }
×
15

16
  public EnumWrapper<GetTermsOfServiceQueryParamsTosTypeField> getTosType() {
17
    return tosType;
1✔
18
  }
19

20
  public static class Builder {
×
21

22
    protected EnumWrapper<GetTermsOfServiceQueryParamsTosTypeField> tosType;
23

24
    public Builder tosType(GetTermsOfServiceQueryParamsTosTypeField tosType) {
25
      this.tosType = new EnumWrapper<GetTermsOfServiceQueryParamsTosTypeField>(tosType);
×
26
      return this;
×
27
    }
28

29
    public Builder tosType(EnumWrapper<GetTermsOfServiceQueryParamsTosTypeField> tosType) {
30
      this.tosType = tosType;
×
31
      return this;
×
32
    }
33

34
    public GetTermsOfServiceQueryParams build() {
35
      return new GetTermsOfServiceQueryParams(this);
×
36
    }
37
  }
38
}
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