• 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/docgentemplate/GetDocgenTemplateTagsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.docgentemplate;
2

3
public class GetDocgenTemplateTagsV2025R0QueryParams {
4

5
  /** Id of template version. */
6
  public String templateVersionId;
7

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

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

19
  public GetDocgenTemplateTagsV2025R0QueryParams() {}
1✔
20

21
  protected GetDocgenTemplateTagsV2025R0QueryParams(Builder builder) {
×
22
    this.templateVersionId = builder.templateVersionId;
×
23
    this.marker = builder.marker;
×
24
    this.limit = builder.limit;
×
25
  }
×
26

27
  public String getTemplateVersionId() {
28
    return templateVersionId;
1✔
29
  }
30

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

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

39
  public static class Builder {
×
40

41
    protected String templateVersionId;
42

43
    protected String marker;
44

45
    protected Long limit;
46

47
    public Builder templateVersionId(String templateVersionId) {
48
      this.templateVersionId = templateVersionId;
×
49
      return this;
×
50
    }
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 GetDocgenTemplateTagsV2025R0QueryParams build() {
63
      return new GetDocgenTemplateTagsV2025R0QueryParams(this);
×
64
    }
65
  }
66
}
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