• 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/folders/CopyFolderRequestBody.java
1
package com.box.sdkgen.managers.classifications;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.fasterxml.jackson.annotation.JsonFilter;
6
import com.fasterxml.jackson.annotation.JsonProperty;
7
import java.util.Objects;
8

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

12
  protected final String key;
13

14
  protected UpdateClassificationRequestBodyDataStaticConfigField staticConfig;
15

16
  public UpdateClassificationRequestBodyDataField(@JsonProperty("key") String key) {
17
    super();
×
18
    this.key = key;
×
19
  }
×
20

21
  protected UpdateClassificationRequestBodyDataField(Builder builder) {
UNCOV
22
    super();
×
UNCOV
23
    this.key = builder.key;
×
UNCOV
24
    this.staticConfig = builder.staticConfig;
×
UNCOV
25
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
26
  }
×
27

28
  public String getKey() {
UNCOV
29
    return key;
×
30
  }
31

32
  public UpdateClassificationRequestBodyDataStaticConfigField getStaticConfig() {
UNCOV
33
    return staticConfig;
×
34
  }
35

36
  @Override
37
  public boolean equals(Object o) {
38
    if (this == o) {
×
39
      return true;
×
40
    }
41
    if (o == null || getClass() != o.getClass()) {
×
42
      return false;
×
43
    }
44
    UpdateClassificationRequestBodyDataField casted = (UpdateClassificationRequestBodyDataField) o;
×
45
    return Objects.equals(key, casted.key) && Objects.equals(staticConfig, casted.staticConfig);
×
46
  }
47

48
  @Override
49
  public int hashCode() {
50
    return Objects.hash(key, staticConfig);
×
51
  }
52

53
  @Override
54
  public String toString() {
55
    return "UpdateClassificationRequestBodyDataField{"
×
56
        + "key='"
57
        + key
58
        + '\''
59
        + ", "
60
        + "staticConfig='"
61
        + staticConfig
62
        + '\''
63
        + "}";
64
  }
65

66
  public static class Builder extends NullableFieldTracker {
67

68
    protected final String key;
69

70
    protected UpdateClassificationRequestBodyDataStaticConfigField staticConfig;
71

72
    public Builder(String key) {
UNCOV
73
      super();
×
UNCOV
74
      this.key = key;
×
UNCOV
75
    }
×
76

77
    public Builder staticConfig(UpdateClassificationRequestBodyDataStaticConfigField staticConfig) {
UNCOV
78
      this.staticConfig = staticConfig;
×
UNCOV
79
      return this;
×
80
    }
81

82
    public UpdateClassificationRequestBodyDataField build() {
UNCOV
83
      return new UpdateClassificationRequestBodyDataField(this);
×
84
    }
85
  }
86
}
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