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

box / box-java-sdk / #7246

10 Jun 2026 02:11PM UTC coverage: 12.418% (-0.04%) from 12.46%
#7246

push

github

web-flow
feat(boxsdkgen): Add new parameters to ai extract structured method (box/box-openapi#604) (#1882)

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

0 of 231 new or added lines in 10 files covered. (0.0%)

8368 of 67388 relevant lines covered (12.42%)

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