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

3
public class DeleteUserByIdQueryParams {
4

5
  /** Whether the user will receive email notification of the deletion. */
6
  public Boolean notify;
7

8
  /** Whether the user should be deleted even if this user still own files. */
9
  public Boolean force;
10

11
  public DeleteUserByIdQueryParams() {}
1✔
12

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

18
  public Boolean getNotify() {
19
    return notify;
1✔
20
  }
21

22
  public Boolean getForce() {
23
    return force;
1✔
24
  }
25

26
  public static class Builder {
×
27

28
    protected Boolean notify;
29

30
    protected Boolean force;
31

32
    public Builder notify(Boolean notify) {
33
      this.notify = notify;
×
34
      return this;
×
35
    }
36

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

42
    public DeleteUserByIdQueryParams build() {
43
      return new DeleteUserByIdQueryParams(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