• 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/schemas/timelineskillcard/TimelineSkillCardEntriesAppearsField.java
1
package com.box.sdkgen.schemas.timelineskillcard;
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 TimelineSkillCardEntriesAppearsField extends SerializableObject {
10

11
  protected Long start;
12

13
  protected Long end;
14

15
  public TimelineSkillCardEntriesAppearsField() {
UNCOV
16
    super();
×
17
  }
×
18

19
  protected TimelineSkillCardEntriesAppearsField(Builder builder) {
20
    super();
×
UNCOV
21
    this.start = builder.start;
×
UNCOV
22
    this.end = builder.end;
×
23
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
24
  }
×
25

26
  public Long getStart() {
27
    return start;
×
28
  }
29

30
  public Long getEnd() {
UNCOV
31
    return end;
×
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
    TimelineSkillCardEntriesAppearsField casted = (TimelineSkillCardEntriesAppearsField) o;
×
UNCOV
43
    return Objects.equals(start, casted.start) && Objects.equals(end, casted.end);
×
44
  }
45

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

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

UNCOV
64
  public static class Builder extends NullableFieldTracker {
×
65

66
    protected Long start;
67

68
    protected Long end;
69

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

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

80
    public TimelineSkillCardEntriesAppearsField build() {
UNCOV
81
      return new TimelineSkillCardEntriesAppearsField(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