• 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/FileFullRepresentationsEntriesInfoField.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.fasterxml.jackson.annotation.JsonFilter;
6
import java.util.Objects;
7

8
@JsonFilter("nullablePropertyFilter")
9
public class FileFullRepresentationsEntriesInfoField extends SerializableObject {
10

11
  /**
12
   * The API URL that can be used to get more info on this file representation. Make sure to make an
13
   * authenticated API call to this endpoint.
14
   */
15
  protected String url;
16

17
  public FileFullRepresentationsEntriesInfoField() {
18
    super();
×
19
  }
×
20

21
  protected FileFullRepresentationsEntriesInfoField(Builder builder) {
22
    super();
×
23
    this.url = builder.url;
×
24
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
25
  }
×
26

27
  public String getUrl() {
28
    return url;
×
29
  }
30

31
  @Override
32
  public boolean equals(Object o) {
33
    if (this == o) {
×
34
      return true;
×
35
    }
36
    if (o == null || getClass() != o.getClass()) {
×
37
      return false;
×
38
    }
39
    FileFullRepresentationsEntriesInfoField casted = (FileFullRepresentationsEntriesInfoField) o;
×
40
    return Objects.equals(url, casted.url);
×
41
  }
42

43
  @Override
44
  public int hashCode() {
45
    return Objects.hash(url);
×
46
  }
47

48
  @Override
49
  public String toString() {
50
    return "FileFullRepresentationsEntriesInfoField{" + "url='" + url + '\'' + "}";
×
51
  }
52

53
  public static class Builder extends NullableFieldTracker {
×
54

55
    protected String url;
56

57
    public Builder url(String url) {
58
      this.url = url;
×
59
      return this;
×
60
    }
61

62
    public FileFullRepresentationsEntriesInfoField build() {
63
      return new FileFullRepresentationsEntriesInfoField(this);
×
64
    }
65
  }
66
}
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