• 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.81
/src/main/java/com/box/sdkgen/managers/signrequests/GetSignRequestsQueryParams.java
1
package com.box.sdkgen.managers.signrequests;
2

3
import java.util.List;
4

5
public class GetSignRequestsQueryParams {
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
   * A list of sender emails to filter the signature requests by sender. If provided,
20
   * `shared_requests` must be set to `true`.
21
   */
22
  public List<String> senders;
23

24
  /**
25
   * If set to `true`, only includes requests that user is not an owner, but user is a collaborator.
26
   * Collaborator access is determined by the user access level of the sign files of the request.
27
   * Default is `false`. Must be set to `true` if `senders` are provided.
28
   */
29
  public Boolean sharedRequests;
30

31
  public GetSignRequestsQueryParams() {}
1✔
32

33
  protected GetSignRequestsQueryParams(Builder builder) {
×
34
    this.marker = builder.marker;
×
35
    this.limit = builder.limit;
×
36
    this.senders = builder.senders;
×
37
    this.sharedRequests = builder.sharedRequests;
×
38
  }
×
39

40
  public String getMarker() {
41
    return marker;
1✔
42
  }
43

44
  public Long getLimit() {
45
    return limit;
1✔
46
  }
47

48
  public List<String> getSenders() {
49
    return senders;
1✔
50
  }
51

52
  public Boolean getSharedRequests() {
53
    return sharedRequests;
1✔
54
  }
55

56
  public static class Builder {
×
57

58
    protected String marker;
59

60
    protected Long limit;
61

62
    protected List<String> senders;
63

64
    protected Boolean sharedRequests;
65

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

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

76
    public Builder senders(List<String> senders) {
77
      this.senders = senders;
×
78
      return this;
×
79
    }
80

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

86
    public GetSignRequestsQueryParams build() {
87
      return new GetSignRequestsQueryParams(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