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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/fileversions/GetFileVersionsQueryParams.java
1
package com.box.sdkgen.managers.comments;
2

3
import java.util.List;
4

5
public class GetFileCommentsQueryParams {
6

7
  public List<String> fields;
8

9
  public Long limit;
10

11
  public Long offset;
12

UNCOV
13
  public GetFileCommentsQueryParams() {}
×
14

15
  protected GetFileCommentsQueryParams(Builder builder) {
×
16
    this.fields = builder.fields;
×
17
    this.limit = builder.limit;
×
18
    this.offset = builder.offset;
×
19
  }
×
20

21
  public List<String> getFields() {
UNCOV
22
    return fields;
×
23
  }
24

25
  public Long getLimit() {
UNCOV
26
    return limit;
×
27
  }
28

29
  public Long getOffset() {
UNCOV
30
    return offset;
×
31
  }
32

33
  public static class Builder {
×
34

35
    protected List<String> fields;
36

37
    protected Long limit;
38

39
    protected Long offset;
40

41
    public Builder fields(List<String> fields) {
42
      this.fields = fields;
×
43
      return this;
×
44
    }
45

46
    public Builder limit(Long limit) {
47
      this.limit = limit;
×
48
      return this;
×
49
    }
50

51
    public Builder offset(Long offset) {
52
      this.offset = offset;
×
53
      return this;
×
54
    }
55

56
    public GetFileCommentsQueryParams build() {
57
      return new GetFileCommentsQueryParams(this);
×
58
    }
59
  }
60
}
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