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

hyperwallet / java-sdk / #654

01 May 2025 10:10PM CUT coverage: 97.037%. Remained the same
#654

push

grmeyer-hw-dev
Update changelog

5567 of 5737 relevant lines covered (97.04%)

67.05 hits per line

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

94.44
/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 {
237✔
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;
5✔
34
    }
35

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

101
    public void setReasons(List<HyperwalletVerificationDocumentReason> reasons) {
102
        this.reasons = reasons;
2✔
103
    }
2✔
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;
4✔
112
    }
113

114
    public void setCreatedOn(Date createdOn) {
115
        this.createdOn = createdOn;
2✔
116
    }
2✔
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