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

box / box-java-sdk / #5528

06 Nov 2025 12:17PM UTC coverage: 13.323%. Remained the same
#5528

push

github

web-flow
fix(boxsdkgen): update descriptions of the user deletion endpoint (box/box-openapi#562) (#1551)

8374 of 62855 relevant lines covered (13.32%)

0.13 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/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
  /**
9
   * Specifies whether to delete the user even if they still own files, were recently active, or
10
   * recently joined the enterprise from a free account.
11
   */
12
  public Boolean force;
13

14
  public DeleteUserByIdQueryParams() {}
×
15

16
  protected DeleteUserByIdQueryParams(Builder builder) {
×
17
    this.notify = builder.notify;
×
18
    this.force = builder.force;
×
19
  }
×
20

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

25
  public Boolean getForce() {
26
    return force;
×
27
  }
28

29
  public static class Builder {
×
30

31
    protected Boolean notify;
32

33
    protected Boolean force;
34

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

40
    public Builder force(Boolean force) {
41
      this.force = force;
×
42
      return this;
×
43
    }
44

45
    public DeleteUserByIdQueryParams build() {
46
      return new DeleteUserByIdQueryParams(this);
×
47
    }
48
  }
49
}
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

© 2025 Coveralls, Inc