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

box / box-java-sdk-gen / #290

24 Jun 2025 01:20PM UTC coverage: 35.757% (+0.1%) from 35.632%
#290

Pull #347

github

web-flow
Merge 2c100d09c into d8480ee6c
Pull Request #347: feat: Add Webhook Validation In Java (box/box-codegen#745)

68 of 82 new or added lines in 2 files covered. (82.93%)

11777 existing lines in 624 files now uncovered.

16984 of 47499 relevant lines covered (35.76%)

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

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.fasterxml.jackson.annotation.JsonFilter;
6
import java.util.Objects;
7

8
@JsonFilter("nullablePropertyFilter")
9
public class UpdateUserByIdRequestBodyNotificationEmailField extends SerializableObject {
10

11
  protected String email;
12

13
  public UpdateUserByIdRequestBodyNotificationEmailField() {
UNCOV
14
    super();
×
15
  }
×
16

17
  protected UpdateUserByIdRequestBodyNotificationEmailField(Builder builder) {
UNCOV
18
    super();
×
UNCOV
19
    this.email = builder.email;
×
20
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
21
  }
×
22

23
  public String getEmail() {
UNCOV
24
    return email;
×
25
  }
26

27
  @Override
28
  public boolean equals(Object o) {
29
    if (this == o) {
×
UNCOV
30
      return true;
×
31
    }
UNCOV
32
    if (o == null || getClass() != o.getClass()) {
×
33
      return false;
×
34
    }
UNCOV
35
    UpdateUserByIdRequestBodyNotificationEmailField casted =
×
36
        (UpdateUserByIdRequestBodyNotificationEmailField) o;
UNCOV
37
    return Objects.equals(email, casted.email);
×
38
  }
39

40
  @Override
41
  public int hashCode() {
UNCOV
42
    return Objects.hash(email);
×
43
  }
44

45
  @Override
46
  public String toString() {
UNCOV
47
    return "UpdateUserByIdRequestBodyNotificationEmailField{" + "email='" + email + '\'' + "}";
×
48
  }
49

UNCOV
50
  public static class Builder extends NullableFieldTracker {
×
51

52
    protected String email;
53

54
    public Builder email(String email) {
UNCOV
55
      this.email = email;
×
56
      return this;
×
57
    }
58

59
    public UpdateUserByIdRequestBodyNotificationEmailField build() {
UNCOV
60
      return new UpdateUserByIdRequestBodyNotificationEmailField(this);
×
61
    }
62
  }
63
}
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