• 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/schemas/shieldinformationbarrierbase/ShieldInformationBarrierBase.java
1
package com.box.sdkgen.managers.workflows;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.box.sdkgen.serialization.json.EnumWrapper;
6
import com.fasterxml.jackson.annotation.JsonFilter;
7
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
8
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
9
import java.util.Objects;
10

11
@JsonFilter("nullablePropertyFilter")
12
public class StartWorkflowRequestBodyFilesField extends SerializableObject {
13

14
  @JsonDeserialize(
15
      using =
16
          StartWorkflowRequestBodyFilesTypeField.StartWorkflowRequestBodyFilesTypeFieldDeserializer
17
              .class)
18
  @JsonSerialize(
19
      using =
20
          StartWorkflowRequestBodyFilesTypeField.StartWorkflowRequestBodyFilesTypeFieldSerializer
21
              .class)
22
  protected EnumWrapper<StartWorkflowRequestBodyFilesTypeField> type;
23

24
  protected String id;
25

26
  public StartWorkflowRequestBodyFilesField() {
27
    super();
×
28
  }
×
29

30
  protected StartWorkflowRequestBodyFilesField(Builder builder) {
UNCOV
31
    super();
×
UNCOV
32
    this.type = builder.type;
×
UNCOV
33
    this.id = builder.id;
×
UNCOV
34
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
35
  }
×
36

37
  public EnumWrapper<StartWorkflowRequestBodyFilesTypeField> getType() {
UNCOV
38
    return type;
×
39
  }
40

41
  public String getId() {
UNCOV
42
    return id;
×
43
  }
44

45
  @Override
46
  public boolean equals(Object o) {
47
    if (this == o) {
×
48
      return true;
×
49
    }
50
    if (o == null || getClass() != o.getClass()) {
×
51
      return false;
×
52
    }
53
    StartWorkflowRequestBodyFilesField casted = (StartWorkflowRequestBodyFilesField) o;
×
54
    return Objects.equals(type, casted.type) && Objects.equals(id, casted.id);
×
55
  }
56

57
  @Override
58
  public int hashCode() {
59
    return Objects.hash(type, id);
×
60
  }
61

62
  @Override
63
  public String toString() {
64
    return "StartWorkflowRequestBodyFilesField{"
×
65
        + "type='"
66
        + type
67
        + '\''
68
        + ", "
69
        + "id='"
70
        + id
71
        + '\''
72
        + "}";
73
  }
74

UNCOV
75
  public static class Builder extends NullableFieldTracker {
×
76

77
    protected EnumWrapper<StartWorkflowRequestBodyFilesTypeField> type;
78

79
    protected String id;
80

81
    public Builder type(StartWorkflowRequestBodyFilesTypeField type) {
UNCOV
82
      this.type = new EnumWrapper<StartWorkflowRequestBodyFilesTypeField>(type);
×
UNCOV
83
      return this;
×
84
    }
85

86
    public Builder type(EnumWrapper<StartWorkflowRequestBodyFilesTypeField> type) {
87
      this.type = type;
×
88
      return this;
×
89
    }
90

91
    public Builder id(String id) {
UNCOV
92
      this.id = id;
×
UNCOV
93
      return this;
×
94
    }
95

96
    public StartWorkflowRequestBodyFilesField build() {
UNCOV
97
      return new StartWorkflowRequestBodyFilesField(this);
×
98
    }
99
  }
100
}
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