• 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

23.53
/src/main/java/com/box/sdkgen/managers/recentitems/GetRecentItemsQueryParams.java
1
package com.box.sdkgen.managers.recentitems;
2

3
import java.util.List;
4

5
public class GetRecentItemsQueryParams {
6

7
  /**
8
   * A comma-separated list of attributes to include in the response. This can be used to request
9
   * fields that are not normally returned in a standard response.
10
   *
11
   * <p>Be aware that specifying this parameter will have the effect that none of the standard
12
   * fields are returned in the response unless explicitly specified, instead only fields for the
13
   * mini representation are returned, additional to the fields requested.
14
   */
15
  public List<String> fields;
16

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

20
  /**
21
   * Defines the position marker at which to begin returning results. This is used when paginating
22
   * using marker-based pagination.
23
   *
24
   * <p>This requires `usemarker` to be set to `true`.
25
   */
26
  public String marker;
27

28
  public GetRecentItemsQueryParams() {}
1✔
29

30
  protected GetRecentItemsQueryParams(Builder builder) {
×
31
    this.fields = builder.fields;
×
32
    this.limit = builder.limit;
×
33
    this.marker = builder.marker;
×
34
  }
×
35

36
  public List<String> getFields() {
37
    return fields;
1✔
38
  }
39

40
  public Long getLimit() {
41
    return limit;
1✔
42
  }
43

44
  public String getMarker() {
45
    return marker;
1✔
46
  }
47

48
  public static class Builder {
×
49

50
    protected List<String> fields;
51

52
    protected Long limit;
53

54
    protected String marker;
55

56
    public Builder fields(List<String> fields) {
57
      this.fields = fields;
×
58
      return this;
×
59
    }
60

61
    public Builder limit(Long limit) {
62
      this.limit = limit;
×
63
      return this;
×
64
    }
65

66
    public Builder marker(String marker) {
67
      this.marker = marker;
×
68
      return this;
×
69
    }
70

71
    public GetRecentItemsQueryParams build() {
72
      return new GetRecentItemsQueryParams(this);
×
73
    }
74
  }
75
}
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