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

hyperwallet / java-sdk / #695

16 May 2025 12:19AM CUT coverage: 96.097%. Remained the same
#695

push

web-flow
Deprecate Double to String (#220)

* Deprecate Double to String

* Fix unit test

* Prepare to release 1.9.7

5048 of 5253 relevant lines covered (96.1%)

65.7 hits per line

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

88.89
/src/main/java/com/hyperwallet/clientsdk/model/HyperwalletVerificationDocument.java
1
package com.hyperwallet.clientsdk.model;
2

3
import com.fasterxml.jackson.annotation.JsonFilter;
4
import com.hyperwallet.clientsdk.util.HyperwalletJsonConfiguration;
5

6
import javax.xml.bind.annotation.XmlAccessType;
7
import javax.xml.bind.annotation.XmlAccessorType;
8
import javax.xml.bind.annotation.XmlRootElement;
9
import java.util.Date;
10
import java.util.List;
11
import java.util.Map;
12

13
@JsonFilter(HyperwalletJsonConfiguration.INCLUSION_FILTER)
14
@XmlRootElement
15
@XmlAccessorType(XmlAccessType.FIELD)
16
public class HyperwalletVerificationDocument {
140✔
17

18
    private String category;
19

20
    private String type;
21

22
    private String status;
23

24
    private String country;
25

26
    private List<HyperwalletVerificationDocumentReason> reasons;
27

28
    public Map<String, String> uploadFiles;
29

30
    private Date createdOn;
31

32
    public String getCategory() {
33
        return category;
2✔
34
    }
35

36
    public void setCategory(String category) {
37
        this.category = category;
140✔
38
    }
140✔
39

40
    public HyperwalletVerificationDocument category(String category) {
41
        setCategory(category);
136✔
42
        return this;
136✔
43
    }
44

45
    public String getType() {
46
        return type;
2✔
47
    }
48

49
    public void setType(String type) {
50
        this.type = type;
140✔
51
    }
140✔
52

53
    public HyperwalletVerificationDocument type(String type) {
54
        setType(type);
136✔
55
        return this;
136✔
56
    }
57

58
    public String getStatus() {
59
        return status;
3✔
60
    }
61

62
    public void setStatus(String status) {
63
        this.status = status;
137✔
64
    }
137✔
65

66
    public HyperwalletVerificationDocument status(String status) {
67
        setStatus(status);
136✔
68
        return this;
136✔
69
    }
70

71
    public String getCountry() {
72
        return country;
2✔
73
    }
74

75
    public void setCountry(String country) {
76
        this.country = country;
140✔
77
    }
140✔
78

79
    public HyperwalletVerificationDocument country(String country) {
80
        setCountry(country);
136✔
81
        return this;
136✔
82
    }
83

84
    public Map<String, String> getUploadFiles() {
85
        return uploadFiles;
6✔
86
    }
87

88
    public void setUploadFiles(Map<String, String> uploadFiles) {
89
        this.uploadFiles = uploadFiles;
3✔
90
    }
3✔
91

92
    public HyperwalletVerificationDocument uploadFiles(Map<String, String> uploadFiles) {
93
        setUploadFiles(uploadFiles);
×
94
        return this;
×
95
    }
96

97
    public List<HyperwalletVerificationDocumentReason> getReasons() {
98
        return reasons;
3✔
99
    }
100

101
    public void setReasons(List<HyperwalletVerificationDocumentReason> reasons) {
102
        this.reasons = reasons;
137✔
103
    }
137✔
104

105
    public HyperwalletVerificationDocument reasons(List<HyperwalletVerificationDocumentReason> reasons) {
106
        setReasons(reasons);
1✔
107
        return this;
1✔
108
    }
109

110
    public Date getCreatedOn() {
111
        return createdOn;
2✔
112
    }
113

114
    public void setCreatedOn(Date createdOn) {
115
        this.createdOn = createdOn;
1✔
116
    }
1✔
117

118
    public HyperwalletVerificationDocument createdOn(Date createdOn) {
119
        this.createdOn = createdOn;
×
120
        return this;
×
121
    }
122
}
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

© 2025 Coveralls, Inc