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

3
public class GetFileThumbnailUrlQueryParams {
4

5
  /** The minimum height of the thumbnail. */
6
  public Long minHeight;
7

8
  /** The minimum width of the thumbnail. */
9
  public Long minWidth;
10

11
  /** The maximum height of the thumbnail. */
12
  public Long maxHeight;
13

14
  /** The maximum width of the thumbnail. */
15
  public Long maxWidth;
16

17
  public GetFileThumbnailUrlQueryParams() {}
1✔
18

19
  protected GetFileThumbnailUrlQueryParams(Builder builder) {
×
20
    this.minHeight = builder.minHeight;
×
21
    this.minWidth = builder.minWidth;
×
22
    this.maxHeight = builder.maxHeight;
×
23
    this.maxWidth = builder.maxWidth;
×
24
  }
×
25

26
  public Long getMinHeight() {
27
    return minHeight;
1✔
28
  }
29

30
  public Long getMinWidth() {
31
    return minWidth;
1✔
32
  }
33

34
  public Long getMaxHeight() {
35
    return maxHeight;
1✔
36
  }
37

38
  public Long getMaxWidth() {
39
    return maxWidth;
1✔
40
  }
41

42
  public static class Builder {
×
43

44
    protected Long minHeight;
45

46
    protected Long minWidth;
47

48
    protected Long maxHeight;
49

50
    protected Long maxWidth;
51

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

57
    public Builder minWidth(Long minWidth) {
58
      this.minWidth = minWidth;
×
59
      return this;
×
60
    }
61

62
    public Builder maxHeight(Long maxHeight) {
63
      this.maxHeight = maxHeight;
×
64
      return this;
×
65
    }
66

67
    public Builder maxWidth(Long maxWidth) {
68
      this.maxWidth = maxWidth;
×
69
      return this;
×
70
    }
71

72
    public GetFileThumbnailUrlQueryParams build() {
73
      return new GetFileThumbnailUrlQueryParams(this);
×
74
    }
75
  }
76
}
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