• 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

8.7
/src/main/java/com/box/sdkgen/schemas/templatesignerinput/TemplateSignerInputDimensionsField.java
1
package com.box.sdkgen.schemas.templatesignerinput;
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 TemplateSignerInputDimensionsField extends SerializableObject {
10

11
  protected Double width;
12

13
  protected Double height;
14

15
  public TemplateSignerInputDimensionsField() {
16
    super();
1✔
17
  }
1✔
18

19
  protected TemplateSignerInputDimensionsField(Builder builder) {
20
    super();
×
UNCOV
21
    this.width = builder.width;
×
UNCOV
22
    this.height = builder.height;
×
23
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
24
  }
×
25

26
  public Double getWidth() {
27
    return width;
×
28
  }
29

30
  public Double getHeight() {
UNCOV
31
    return height;
×
32
  }
33

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

46
  @Override
47
  public int hashCode() {
UNCOV
48
    return Objects.hash(width, height);
×
49
  }
50

51
  @Override
52
  public String toString() {
UNCOV
53
    return "TemplateSignerInputDimensionsField{"
×
54
        + "width='"
55
        + width
56
        + '\''
57
        + ", "
58
        + "height='"
59
        + height
60
        + '\''
61
        + "}";
62
  }
63

UNCOV
64
  public static class Builder extends NullableFieldTracker {
×
65

66
    protected Double width;
67

68
    protected Double height;
69

70
    public Builder width(Double width) {
UNCOV
71
      this.width = width;
×
72
      return this;
×
73
    }
74

75
    public Builder height(Double height) {
UNCOV
76
      this.height = height;
×
77
      return this;
×
78
    }
79

80
    public TemplateSignerInputDimensionsField build() {
UNCOV
81
      return new TemplateSignerInputDimensionsField(this);
×
82
    }
83
  }
84
}
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