• 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/templatesignerinput/TemplateSignerInputDimensionsField.java
1
package com.box.sdkgen.schemas.aiagentlongtexttool;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.fasterxml.jackson.annotation.JsonFilter;
6
import java.util.Objects;
7

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

11
  protected String model;
12

13
  protected AiAgentLongTextToolEmbeddingsStrategyField strategy;
14

15
  public AiAgentLongTextToolEmbeddingsField() {
UNCOV
16
    super();
×
UNCOV
17
  }
×
18

19
  protected AiAgentLongTextToolEmbeddingsField(Builder builder) {
20
    super();
×
21
    this.model = builder.model;
×
22
    this.strategy = builder.strategy;
×
23
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
24
  }
×
25

26
  public String getModel() {
UNCOV
27
    return model;
×
28
  }
29

30
  public AiAgentLongTextToolEmbeddingsStrategyField getStrategy() {
UNCOV
31
    return strategy;
×
32
  }
33

34
  @Override
35
  public boolean equals(Object o) {
36
    if (this == o) {
×
37
      return true;
×
38
    }
39
    if (o == null || getClass() != o.getClass()) {
×
40
      return false;
×
41
    }
42
    AiAgentLongTextToolEmbeddingsField casted = (AiAgentLongTextToolEmbeddingsField) o;
×
43
    return Objects.equals(model, casted.model) && Objects.equals(strategy, casted.strategy);
×
44
  }
45

46
  @Override
47
  public int hashCode() {
48
    return Objects.hash(model, strategy);
×
49
  }
50

51
  @Override
52
  public String toString() {
53
    return "AiAgentLongTextToolEmbeddingsField{"
×
54
        + "model='"
55
        + model
56
        + '\''
57
        + ", "
58
        + "strategy='"
59
        + strategy
60
        + '\''
61
        + "}";
62
  }
63

64
  public static class Builder extends NullableFieldTracker {
×
65

66
    protected String model;
67

68
    protected AiAgentLongTextToolEmbeddingsStrategyField strategy;
69

70
    public Builder model(String model) {
71
      this.model = model;
×
72
      return this;
×
73
    }
74

75
    public Builder strategy(AiAgentLongTextToolEmbeddingsStrategyField strategy) {
76
      this.strategy = strategy;
×
77
      return this;
×
78
    }
79

80
    public AiAgentLongTextToolEmbeddingsField build() {
81
      return new AiAgentLongTextToolEmbeddingsField(this);
×
82
    }
83
  }
84
}
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