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

box / box-java-sdk / #6736

22 Apr 2026 01:45PM UTC coverage: 34.979% (-0.06%) from 35.04%
#6736

push

github

web-flow
chore: release version 10.9.0 (#1802)

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

220 existing lines in 14 files now uncovered.

19086 of 54564 relevant lines covered (34.98%)

0.35 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
  /** Specifies whether to delete the user even if they still own files. */
9
  public Boolean force;
10

11
  public DeleteUserByIdQueryParams() {}
1✔
12

UNCOV
13
  protected DeleteUserByIdQueryParams(Builder builder) {
×
UNCOV
14
    this.notify = builder.notify;
×
UNCOV
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

UNCOV
26
  public static class Builder {
×
27

28
    protected Boolean notify;
29

30
    protected Boolean force;
31

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

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

42
    public DeleteUserByIdQueryParams build() {
UNCOV
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