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

box / box-java-sdk-gen / #301

26 Jun 2025 03:33PM UTC coverage: 35.681% (-0.04%) from 35.723%
#301

push

github

web-flow
feat: Add webhook validation(box/box-codegen#745) (#347)

Co-authored-by: box-sdk-build <box-sdk-build@box.com>

68 of 82 new or added lines in 2 files covered. (82.93%)

11818 existing lines in 631 files now uncovered.

16948 of 47499 relevant lines covered (35.68%)

0.36 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/FileFullRepresentationsEntriesContentField.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 com.fasterxml.jackson.annotation.JsonProperty;
7
import java.util.Objects;
8

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

12
  @JsonProperty("url_template")
13
  protected String urlTemplate;
14

15
  public FileFullRepresentationsEntriesContentField() {
UNCOV
16
    super();
×
17
  }
×
18

19
  protected FileFullRepresentationsEntriesContentField(Builder builder) {
UNCOV
20
    super();
×
UNCOV
21
    this.urlTemplate = builder.urlTemplate;
×
22
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
23
  }
×
24

25
  public String getUrlTemplate() {
UNCOV
26
    return urlTemplate;
×
27
  }
28

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

42
  @Override
43
  public int hashCode() {
UNCOV
44
    return Objects.hash(urlTemplate);
×
45
  }
46

47
  @Override
48
  public String toString() {
UNCOV
49
    return "FileFullRepresentationsEntriesContentField{"
×
50
        + "urlTemplate='"
51
        + urlTemplate
52
        + '\''
53
        + "}";
54
  }
55

UNCOV
56
  public static class Builder extends NullableFieldTracker {
×
57

58
    protected String urlTemplate;
59

60
    public Builder urlTemplate(String urlTemplate) {
UNCOV
61
      this.urlTemplate = urlTemplate;
×
62
      return this;
×
63
    }
64

65
    public FileFullRepresentationsEntriesContentField build() {
UNCOV
66
      return new FileFullRepresentationsEntriesContentField(this);
×
67
    }
68
  }
69
}
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