• 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

30.43
/src/main/java/com/box/sdkgen/managers/workflows/GetWorkflowsQueryParams.java
1
package com.box.sdkgen.managers.workflows;
2

3
public class GetWorkflowsQueryParams {
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
  /** Type of trigger to search for. */
17
  public String triggerType;
18

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

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

30
  public GetWorkflowsQueryParams(String folderId) {
1✔
31
    this.folderId = folderId;
1✔
32
  }
1✔
33

34
  protected GetWorkflowsQueryParams(Builder builder) {
×
35
    this.folderId = builder.folderId;
×
36
    this.triggerType = builder.triggerType;
×
37
    this.limit = builder.limit;
×
38
    this.marker = builder.marker;
×
39
  }
×
40

41
  public String getFolderId() {
42
    return folderId;
1✔
43
  }
44

45
  public String getTriggerType() {
46
    return triggerType;
1✔
47
  }
48

49
  public Long getLimit() {
50
    return limit;
1✔
51
  }
52

53
  public String getMarker() {
54
    return marker;
1✔
55
  }
56

57
  public static class Builder {
58

59
    protected final String folderId;
60

61
    protected String triggerType;
62

63
    protected Long limit;
64

65
    protected String marker;
66

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

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

76
    public Builder limit(Long limit) {
77
      this.limit = limit;
×
78
      return this;
×
79
    }
80

81
    public Builder marker(String marker) {
82
      this.marker = marker;
×
83
      return this;
×
84
    }
85

86
    public GetWorkflowsQueryParams build() {
87
      return new GetWorkflowsQueryParams(this);
×
88
    }
89
  }
90
}
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