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

box / box-java-sdk-gen / #434

25 Jul 2025 11:37AM UTC coverage: 38.047% (+0.05%) from 37.998%
#434

push

github

web-flow
feat: Add Archive Public API (box/box-openapi#540) (#372)

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

16 of 260 new or added lines in 10 files covered. (6.15%)

8 existing lines in 3 files now uncovered.

18919 of 49725 relevant lines covered (38.05%)

0.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/box/sdkgen/managers/archives/CreateArchiveV2025R0RequestBody.java
1
package com.box.sdkgen.managers.archives;
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.Objects;
7

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

11
  protected final String name;
12

13
  public CreateArchiveV2025R0RequestBody(@JsonProperty("name") String name) {
NEW
14
    super();
×
NEW
15
    this.name = name;
×
NEW
16
  }
×
17

18
  public String getName() {
NEW
19
    return name;
×
20
  }
21

22
  @Override
23
  public boolean equals(Object o) {
NEW
24
    if (this == o) {
×
NEW
25
      return true;
×
26
    }
NEW
27
    if (o == null || getClass() != o.getClass()) {
×
NEW
28
      return false;
×
29
    }
NEW
30
    CreateArchiveV2025R0RequestBody casted = (CreateArchiveV2025R0RequestBody) o;
×
NEW
31
    return Objects.equals(name, casted.name);
×
32
  }
33

34
  @Override
35
  public int hashCode() {
NEW
36
    return Objects.hash(name);
×
37
  }
38

39
  @Override
40
  public String toString() {
NEW
41
    return "CreateArchiveV2025R0RequestBody{" + "name='" + name + '\'' + "}";
×
42
  }
43
}
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