• 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/skills/CreateBoxSkillCardsOnFileRequestBody.java
1
package com.box.sdkgen.managers.skills;
2

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

10
@JsonFilter("nullablePropertyFilter")
11
public class CreateBoxSkillCardsOnFileRequestBody extends SerializableObject {
12

13
  /** A list of Box Skill cards to apply to this file. */
14
  protected final List<SkillCard> cards;
15

16
  public CreateBoxSkillCardsOnFileRequestBody(@JsonProperty("cards") List<SkillCard> cards) {
17
    super();
1✔
18
    this.cards = cards;
1✔
19
  }
1✔
20

21
  public List<SkillCard> getCards() {
22
    return cards;
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
    CreateBoxSkillCardsOnFileRequestBody casted = (CreateBoxSkillCardsOnFileRequestBody) o;
×
34
    return Objects.equals(cards, casted.cards);
×
35
  }
36

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

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