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

box / box-java-sdk / #6717

22 Apr 2026 11:25AM UTC coverage: 12.652% (-0.008%) from 12.66%
#6717

push

github

web-flow
feat(boxsdkgen): Add `max_extension_length` field to Retention Policies (box/box-openapi#593) (#1798)

0 of 127 new or added lines in 9 files covered. (0.0%)

215 existing lines in 15 files now uncovered.

8368 of 66140 relevant lines covered (12.65%)

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

11
  public DeleteUserByIdQueryParams() {}
×
12

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

18
  public Boolean getNotify() {
UNCOV
19
    return notify;
×
20
  }
21

22
  public Boolean getForce() {
23
    return force;
×
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