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

box / box-java-sdk / #7225

10 Jun 2026 01:57PM UTC coverage: 12.407% (-0.06%) from 12.468%
#7225

Pull #1883

github

web-flow
Merge 7b202c4ac into de6bd88fa
Pull Request #1883: feat(boxsdkgen): Add new event types (box/box-openapi#1703) (box/box-openapi#605)

0 of 291 new or added lines in 13 files covered. (0.0%)

17 existing lines in 10 files now uncovered.

8368 of 67445 relevant lines covered (12.41%)

0.12 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/aiextractfieldoption/AiExtractFieldOption.java
1
package com.box.sdkgen.schemas.aiextractfieldoption;
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
/** An option for an AI extract field. */
9
@JsonFilter("nullablePropertyFilter")
10
public class AiExtractFieldOption extends SerializableObject {
11

12
  /** A unique identifier for the option. */
13
  protected final String key;
14

15
  public AiExtractFieldOption(@JsonProperty("key") String key) {
NEW
16
    super();
×
NEW
17
    this.key = key;
×
NEW
18
  }
×
19

20
  public String getKey() {
NEW
21
    return key;
×
22
  }
23

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

36
  @Override
37
  public int hashCode() {
NEW
38
    return Objects.hash(key);
×
39
  }
40

41
  @Override
42
  public String toString() {
NEW
43
    return "AiExtractFieldOption{" + "key='" + key + '\'' + "}";
×
44
  }
45
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc