• 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

68.42
/src/main/java/com/box/sdkgen/managers/devicepinners/GetEnterpriseDevicePinnersQueryParams.java
1
package com.box.sdkgen.managers.devicepinners;
2

3
import com.box.sdkgen.serialization.json.EnumWrapper;
4

5
public class GetEnterpriseDevicePinnersQueryParams {
6

7
  /**
8
   * Defines the position marker at which to begin returning results. This is used when paginating
9
   * using marker-based pagination.
10
   *
11
   * <p>This requires `usemarker` to be set to `true`.
12
   */
13
  public String marker;
14

15
  /** The maximum number of items to return per page. */
16
  public Long limit;
17

18
  /**
19
   * The direction to sort results in. This can be either in alphabetical ascending (`ASC`) or
20
   * descending (`DESC`) order.
21
   */
22
  public EnumWrapper<GetEnterpriseDevicePinnersQueryParamsDirectionField> direction;
23

24
  public GetEnterpriseDevicePinnersQueryParams() {}
1✔
25

26
  protected GetEnterpriseDevicePinnersQueryParams(Builder builder) {
1✔
27
    this.marker = builder.marker;
1✔
28
    this.limit = builder.limit;
1✔
29
    this.direction = builder.direction;
1✔
30
  }
1✔
31

32
  public String getMarker() {
33
    return marker;
1✔
34
  }
35

36
  public Long getLimit() {
37
    return limit;
1✔
38
  }
39

40
  public EnumWrapper<GetEnterpriseDevicePinnersQueryParamsDirectionField> getDirection() {
41
    return direction;
1✔
42
  }
43

44
  public static class Builder {
1✔
45

46
    protected String marker;
47

48
    protected Long limit;
49

50
    protected EnumWrapper<GetEnterpriseDevicePinnersQueryParamsDirectionField> direction;
51

52
    public Builder marker(String marker) {
53
      this.marker = marker;
×
54
      return this;
×
55
    }
56

57
    public Builder limit(Long limit) {
58
      this.limit = limit;
×
59
      return this;
×
60
    }
61

62
    public Builder direction(GetEnterpriseDevicePinnersQueryParamsDirectionField direction) {
63
      this.direction =
1✔
64
          new EnumWrapper<GetEnterpriseDevicePinnersQueryParamsDirectionField>(direction);
65
      return this;
1✔
66
    }
67

68
    public Builder direction(
69
        EnumWrapper<GetEnterpriseDevicePinnersQueryParamsDirectionField> direction) {
70
      this.direction = direction;
×
71
      return this;
×
72
    }
73

74
    public GetEnterpriseDevicePinnersQueryParams build() {
75
      return new GetEnterpriseDevicePinnersQueryParams(this);
1✔
76
    }
77
  }
78
}
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