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

box / box-java-sdk / #5076

07 Oct 2025 12:35PM UTC coverage: 37.132% (+0.007%) from 37.125%
#5076

push

github

web-flow
test: Change `Event.additionalDetails` field assertion in events test (box/box-codegen#858) (#1491)

18454 of 49699 relevant lines covered (37.13%)

0.37 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/transcriptskillcard/TranscriptSkillCardEntriesField.java
1
package com.box.sdkgen.schemas.transcriptskillcard;
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.List;
7
import java.util.Objects;
8

9
@JsonFilter("nullablePropertyFilter")
10
public class TranscriptSkillCardEntriesField extends SerializableObject {
11

12
  /**
13
   * The text of the entry. This would be the transcribed text assigned to the entry on the
14
   * timeline.
15
   */
16
  protected String text;
17

18
  /**
19
   * Defines when a transcribed bit of text appears. This only includes a start time and no end
20
   * time.
21
   */
22
  protected List<TranscriptSkillCardEntriesAppearsField> appears;
23

24
  public TranscriptSkillCardEntriesField() {
25
    super();
×
26
  }
×
27

28
  protected TranscriptSkillCardEntriesField(Builder builder) {
29
    super();
×
30
    this.text = builder.text;
×
31
    this.appears = builder.appears;
×
32
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
33
  }
×
34

35
  public String getText() {
36
    return text;
×
37
  }
38

39
  public List<TranscriptSkillCardEntriesAppearsField> getAppears() {
40
    return appears;
×
41
  }
42

43
  @Override
44
  public boolean equals(Object o) {
45
    if (this == o) {
×
46
      return true;
×
47
    }
48
    if (o == null || getClass() != o.getClass()) {
×
49
      return false;
×
50
    }
51
    TranscriptSkillCardEntriesField casted = (TranscriptSkillCardEntriesField) o;
×
52
    return Objects.equals(text, casted.text) && Objects.equals(appears, casted.appears);
×
53
  }
54

55
  @Override
56
  public int hashCode() {
57
    return Objects.hash(text, appears);
×
58
  }
59

60
  @Override
61
  public String toString() {
62
    return "TranscriptSkillCardEntriesField{"
×
63
        + "text='"
64
        + text
65
        + '\''
66
        + ", "
67
        + "appears='"
68
        + appears
69
        + '\''
70
        + "}";
71
  }
72

73
  public static class Builder extends NullableFieldTracker {
×
74

75
    protected String text;
76

77
    protected List<TranscriptSkillCardEntriesAppearsField> appears;
78

79
    public Builder text(String text) {
80
      this.text = text;
×
81
      return this;
×
82
    }
83

84
    public Builder appears(List<TranscriptSkillCardEntriesAppearsField> appears) {
85
      this.appears = appears;
×
86
      return this;
×
87
    }
88

89
    public TranscriptSkillCardEntriesField build() {
90
      return new TranscriptSkillCardEntriesField(this);
×
91
    }
92
  }
93
}
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