• 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/filefull/FileFullRepresentationsEntriesStatusField.java
1
package com.box.sdkgen.schemas.filefull;
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 FileFullRepresentationsEntriesStatusField extends SerializableObject {
13

14
  /**
15
   * The status of the representation.
16
   *
17
   * <p>* `success` defines the representation as ready to be viewed. * `viewable` defines a video
18
   * to be ready for viewing. * `pending` defines the representation as to be generated. Retry this
19
   * endpoint to re-check the status. * `none` defines that the representation will be created when
20
   * requested. Request the URL defined in the `info` object to trigger this generation.
21
   */
22
  @JsonDeserialize(
23
      using =
24
          FileFullRepresentationsEntriesStatusStateField
25
              .FileFullRepresentationsEntriesStatusStateFieldDeserializer.class)
26
  @JsonSerialize(
27
      using =
28
          FileFullRepresentationsEntriesStatusStateField
29
              .FileFullRepresentationsEntriesStatusStateFieldSerializer.class)
30
  protected EnumWrapper<FileFullRepresentationsEntriesStatusStateField> state;
31

32
  public FileFullRepresentationsEntriesStatusField() {
33
    super();
×
34
  }
×
35

36
  protected FileFullRepresentationsEntriesStatusField(Builder builder) {
37
    super();
×
38
    this.state = builder.state;
×
39
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
40
  }
×
41

42
  public EnumWrapper<FileFullRepresentationsEntriesStatusStateField> getState() {
43
    return state;
×
44
  }
45

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

59
  @Override
60
  public int hashCode() {
61
    return Objects.hash(state);
×
62
  }
63

64
  @Override
65
  public String toString() {
66
    return "FileFullRepresentationsEntriesStatusField{" + "state='" + state + '\'' + "}";
×
67
  }
68

69
  public static class Builder extends NullableFieldTracker {
×
70

71
    protected EnumWrapper<FileFullRepresentationsEntriesStatusStateField> state;
72

73
    public Builder state(FileFullRepresentationsEntriesStatusStateField state) {
74
      this.state = new EnumWrapper<FileFullRepresentationsEntriesStatusStateField>(state);
×
75
      return this;
×
76
    }
77

78
    public Builder state(EnumWrapper<FileFullRepresentationsEntriesStatusStateField> state) {
79
      this.state = state;
×
80
      return this;
×
81
    }
82

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