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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/usercollaborations/CreateCollaborationQueryParams.java
1
package com.box.sdkgen.managers.usercollaborations;
2

3
import java.util.List;
4

5
public class CreateCollaborationQueryParams {
6

7
  public List<String> fields;
8

9
  public Boolean notify;
10

UNCOV
11
  public CreateCollaborationQueryParams() {}
×
12

13
  protected CreateCollaborationQueryParams(Builder builder) {
×
14
    this.fields = builder.fields;
×
15
    this.notify = builder.notify;
×
16
  }
×
17

18
  public List<String> getFields() {
UNCOV
19
    return fields;
×
20
  }
21

22
  public Boolean getNotify() {
UNCOV
23
    return notify;
×
24
  }
25

26
  public static class Builder {
×
27

28
    protected List<String> fields;
29

30
    protected Boolean notify;
31

32
    public Builder fields(List<String> fields) {
33
      this.fields = fields;
×
34
      return this;
×
35
    }
36

37
    public Builder notify(Boolean notify) {
38
      this.notify = notify;
×
39
      return this;
×
40
    }
41

42
    public CreateCollaborationQueryParams build() {
43
      return new CreateCollaborationQueryParams(this);
×
44
    }
45
  }
46
}
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