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

box / box-java-sdk / #6852

29 Apr 2026 06:52PM UTC coverage: 12.542% (-0.1%) from 12.64%
#6852

push

github

web-flow
feat(boxsdkgen): Automate Public API (box/box-openapi#594) (#1816)

0 of 542 new or added lines in 19 files covered. (0.0%)

2 existing lines in 1 file now uncovered.

8377 of 66793 relevant lines covered (12.54%)

0.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/box/sdkgen/managers/automateworkflows/GetAutomateWorkflowsV2026R0QueryParams.java
1
package com.box.sdkgen.managers.automateworkflows;
2

3
public class GetAutomateWorkflowsV2026R0QueryParams {
4

5
  /**
6
   * The unique identifier that represent a folder.
7
   *
8
   * <p>The ID for any folder can be determined by visiting this folder in the web application and
9
   * copying the ID from the URL. For example, for the URL `https://*.app.box.com/folder/123` the
10
   * `folder_id` is `123`.
11
   *
12
   * <p>The root folder of a Box account is always represented by the ID `0`.
13
   */
14
  public final String folderId;
15

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

19
  /**
20
   * Defines the position marker at which to begin returning results. This is used when paginating
21
   * using marker-based pagination.
22
   */
23
  public String marker;
24

NEW
25
  public GetAutomateWorkflowsV2026R0QueryParams(String folderId) {
×
NEW
26
    this.folderId = folderId;
×
NEW
27
  }
×
28

NEW
29
  protected GetAutomateWorkflowsV2026R0QueryParams(Builder builder) {
×
NEW
30
    this.folderId = builder.folderId;
×
NEW
31
    this.limit = builder.limit;
×
NEW
32
    this.marker = builder.marker;
×
NEW
33
  }
×
34

35
  public String getFolderId() {
NEW
36
    return folderId;
×
37
  }
38

39
  public Long getLimit() {
NEW
40
    return limit;
×
41
  }
42

43
  public String getMarker() {
NEW
44
    return marker;
×
45
  }
46

47
  public static class Builder {
48

49
    protected final String folderId;
50

51
    protected Long limit;
52

53
    protected String marker;
54

NEW
55
    public Builder(String folderId) {
×
NEW
56
      this.folderId = folderId;
×
NEW
57
    }
×
58

59
    public Builder limit(Long limit) {
NEW
60
      this.limit = limit;
×
NEW
61
      return this;
×
62
    }
63

64
    public Builder marker(String marker) {
NEW
65
      this.marker = marker;
×
NEW
66
      return this;
×
67
    }
68

69
    public GetAutomateWorkflowsV2026R0QueryParams build() {
NEW
70
      return new GetAutomateWorkflowsV2026R0QueryParams(this);
×
71
    }
72
  }
73
}
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