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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/tasks/Tasks.java
1
package com.box.sdkgen.schemas.taskassignments;
2

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

11
@JsonFilter("nullablePropertyFilter")
12
public class TaskAssignments extends SerializableObject {
13

14
  @JsonProperty("total_count")
15
  protected Long totalCount;
16

17
  protected List<TaskAssignment> entries;
18

19
  public TaskAssignments() {
UNCOV
20
    super();
×
UNCOV
21
  }
×
22

23
  protected TaskAssignments(Builder builder) {
24
    super();
×
25
    this.totalCount = builder.totalCount;
×
26
    this.entries = builder.entries;
×
27
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
28
  }
×
29

30
  public Long getTotalCount() {
UNCOV
31
    return totalCount;
×
32
  }
33

34
  public List<TaskAssignment> getEntries() {
35
    return entries;
×
36
  }
37

38
  @Override
39
  public boolean equals(Object o) {
40
    if (this == o) {
×
41
      return true;
×
42
    }
43
    if (o == null || getClass() != o.getClass()) {
×
44
      return false;
×
45
    }
46
    TaskAssignments casted = (TaskAssignments) o;
×
47
    return Objects.equals(totalCount, casted.totalCount) && Objects.equals(entries, casted.entries);
×
48
  }
49

50
  @Override
51
  public int hashCode() {
52
    return Objects.hash(totalCount, entries);
×
53
  }
54

55
  @Override
56
  public String toString() {
57
    return "TaskAssignments{"
×
58
        + "totalCount='"
59
        + totalCount
60
        + '\''
61
        + ", "
62
        + "entries='"
63
        + entries
64
        + '\''
65
        + "}";
66
  }
67

68
  public static class Builder extends NullableFieldTracker {
×
69

70
    protected Long totalCount;
71

72
    protected List<TaskAssignment> entries;
73

74
    public Builder totalCount(Long totalCount) {
75
      this.totalCount = totalCount;
×
76
      return this;
×
77
    }
78

79
    public Builder entries(List<TaskAssignment> entries) {
80
      this.entries = entries;
×
81
      return this;
×
82
    }
83

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