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

box / box-java-sdk-gen / #294

24 Jun 2025 01:20PM UTC coverage: 35.662% (+0.03%) from 35.632%
#294

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%)

11791 existing lines in 624 files now uncovered.

16939 of 47499 relevant lines covered (35.66%)

0.36 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.0
/src/main/java/com/box/sdkgen/managers/invites/CreateInviteRequestBody.java
1
package com.box.sdkgen.managers.invites;
2

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

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

11
  protected final CreateInviteRequestBodyEnterpriseField enterprise;
12

13
  @JsonProperty("actionable_by")
14
  protected final CreateInviteRequestBodyActionableByField actionableBy;
15

16
  public CreateInviteRequestBody(
17
      @JsonProperty("enterprise") CreateInviteRequestBodyEnterpriseField enterprise,
18
      @JsonProperty("actionable_by") CreateInviteRequestBodyActionableByField actionableBy) {
19
    super();
1✔
20
    this.enterprise = enterprise;
1✔
21
    this.actionableBy = actionableBy;
1✔
22
  }
1✔
23

24
  public CreateInviteRequestBodyEnterpriseField getEnterprise() {
25
    return enterprise;
1✔
26
  }
27

28
  public CreateInviteRequestBodyActionableByField getActionableBy() {
29
    return actionableBy;
1✔
30
  }
31

32
  @Override
33
  public boolean equals(Object o) {
UNCOV
34
    if (this == o) {
×
35
      return true;
×
36
    }
UNCOV
37
    if (o == null || getClass() != o.getClass()) {
×
38
      return false;
×
39
    }
40
    CreateInviteRequestBody casted = (CreateInviteRequestBody) o;
×
UNCOV
41
    return Objects.equals(enterprise, casted.enterprise)
×
UNCOV
42
        && Objects.equals(actionableBy, casted.actionableBy);
×
43
  }
44

45
  @Override
46
  public int hashCode() {
UNCOV
47
    return Objects.hash(enterprise, actionableBy);
×
48
  }
49

50
  @Override
51
  public String toString() {
UNCOV
52
    return "CreateInviteRequestBody{"
×
53
        + "enterprise='"
54
        + enterprise
55
        + '\''
56
        + ", "
57
        + "actionableBy='"
58
        + actionableBy
59
        + '\''
60
        + "}";
61
  }
62
}
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