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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/invites/CreateInviteRequestBodyActionableByField.java
1
package com.box.sdkgen.schemas.keywordskillcard;
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 KeywordSkillCardEntriesField extends SerializableObject {
10

11
  protected String text;
12

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

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

23
  public String getText() {
UNCOV
24
    return text;
×
25
  }
26

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

39
  @Override
40
  public int hashCode() {
41
    return Objects.hash(text);
×
42
  }
43

44
  @Override
45
  public String toString() {
46
    return "KeywordSkillCardEntriesField{" + "text='" + text + '\'' + "}";
×
47
  }
48

UNCOV
49
  public static class Builder extends NullableFieldTracker {
×
50

51
    protected String text;
52

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

58
    public KeywordSkillCardEntriesField build() {
UNCOV
59
      return new KeywordSkillCardEntriesField(this);
×
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