• 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/integrationmappingsteams/IntegrationMappingsTeams.java
1
package com.box.sdkgen.schemas.integrationmappingsteams;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.box.sdkgen.schemas.integrationmappingteams.IntegrationMappingTeams;
6
import com.fasterxml.jackson.annotation.JsonFilter;
7
import java.util.List;
8
import java.util.Objects;
9

10
/** A list of integration mapping objects. */
11
@JsonFilter("nullablePropertyFilter")
12
public class IntegrationMappingsTeams extends SerializableObject {
13

14
  /** A list of integration mappings. */
15
  protected List<IntegrationMappingTeams> entries;
16

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

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

27
  public List<IntegrationMappingTeams> getEntries() {
28
    return entries;
×
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
    IntegrationMappingsTeams casted = (IntegrationMappingsTeams) o;
×
40
    return Objects.equals(entries, casted.entries);
×
41
  }
42

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

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

53
  public static class Builder extends NullableFieldTracker {
×
54

55
    protected List<IntegrationMappingTeams> entries;
56

57
    public Builder entries(List<IntegrationMappingTeams> entries) {
58
      this.entries = entries;
×
59
      return this;
×
60
    }
61

62
    public IntegrationMappingsTeams build() {
63
      return new IntegrationMappingsTeams(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