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

box / box-java-sdk / #5702

18 Nov 2025 06:13PM UTC coverage: 35.924% (-1.3%) from 37.182%
#5702

push

github

web-flow
fix: Fix parsing `OffsetDateTime` from String (box/box-codegen#887) (#1582)

7 of 10 new or added lines in 1 file covered. (70.0%)

433 existing lines in 45 files now uncovered.

18457 of 51378 relevant lines covered (35.92%)

0.36 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
  /**
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() {}
1✔
15

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

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

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

UNCOV
29
  public static class Builder {
×
30

31
    protected Boolean notify;
32

33
    protected Boolean force;
34

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

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

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

© 2026 Coveralls, Inc