• 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

23.08
/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
  /**
8
   * A comma-separated list of attributes to include in the response. This can be used to request
9
   * fields that are not normally returned in a standard response.
10
   *
11
   * <p>Be aware that specifying this parameter will have the effect that none of the standard
12
   * fields are returned in the response unless explicitly specified, instead only fields for the
13
   * mini representation are returned, additional to the fields requested.
14
   */
15
  public List<String> fields;
16

17
  /** Determines if users should receive email notification for the action performed. */
18
  public Boolean notify;
19

20
  public CreateCollaborationQueryParams() {}
1✔
21

22
  protected CreateCollaborationQueryParams(Builder builder) {
×
23
    this.fields = builder.fields;
×
24
    this.notify = builder.notify;
×
25
  }
×
26

27
  public List<String> getFields() {
28
    return fields;
1✔
29
  }
30

31
  public Boolean getNotify() {
32
    return notify;
1✔
33
  }
34

35
  public static class Builder {
×
36

37
    protected List<String> fields;
38

39
    protected Boolean notify;
40

41
    public Builder fields(List<String> fields) {
42
      this.fields = fields;
×
43
      return this;
×
44
    }
45

46
    public Builder notify(Boolean notify) {
47
      this.notify = notify;
×
48
      return this;
×
49
    }
50

51
    public CreateCollaborationQueryParams build() {
52
      return new CreateCollaborationQueryParams(this);
×
53
    }
54
  }
55
}
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