• 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

33.33
/src/main/java/com/box/sdkgen/managers/sessiontermination/TerminateGroupsSessionsRequestBody.java
1
package com.box.sdkgen.managers.sessiontermination;
2

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

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

12
  /** A list of group IDs. */
13
  @JsonProperty("group_ids")
14
  protected final List<String> groupIds;
15

16
  public TerminateGroupsSessionsRequestBody(@JsonProperty("group_ids") List<String> groupIds) {
17
    super();
1✔
18
    this.groupIds = groupIds;
1✔
19
  }
1✔
20

21
  public List<String> getGroupIds() {
22
    return groupIds;
1✔
23
  }
24

25
  @Override
26
  public boolean equals(Object o) {
27
    if (this == o) {
×
28
      return true;
×
29
    }
30
    if (o == null || getClass() != o.getClass()) {
×
31
      return false;
×
32
    }
33
    TerminateGroupsSessionsRequestBody casted = (TerminateGroupsSessionsRequestBody) o;
×
34
    return Objects.equals(groupIds, casted.groupIds);
×
35
  }
36

37
  @Override
38
  public int hashCode() {
39
    return Objects.hash(groupIds);
×
40
  }
41

42
  @Override
43
  public String toString() {
44
    return "TerminateGroupsSessionsRequestBody{" + "groupIds='" + groupIds + '\'' + "}";
×
45
  }
46
}
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