-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPartialCard.java
79 lines (62 loc) · 1.45 KB
/
PartialCard.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package io.paymenthighway.model.response;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Card POJO (with partial pan)
*/
public class PartialCard {
@JsonProperty("partial_pan")
private String partialPan;
@JsonProperty("type")
private String type;
@JsonProperty("expire_year")
private String expireYear;
@JsonProperty("expire_month")
private String expireMonth;
@JsonProperty("cvc_required")
private String cvcRequired;
@JsonProperty("bin")
private String bin;
@JsonProperty("funding")
private String funding;
@JsonProperty("category")
private String category;
@JsonProperty("country_code")
private String countryCode;
@JsonProperty("card_fingerprint")
private String cardFingerprint;
@JsonProperty("pan_fingerprint")
private String panFingerprint;
public String getPartialPan() {
return partialPan;
}
public String getType() {
return type;
}
public String getExpireYear() {
return expireYear;
}
public String getExpireMonth() {
return expireMonth;
}
public String getCvcRequired() {
return cvcRequired;
}
public String getBin() {
return bin;
}
public String getFunding() {
return funding;
}
public String getCategory() {
return category;
}
public String getCountryCode() {
return countryCode;
}
public String getCardFingerprint() {
return cardFingerprint;
}
public String getPanFingerprint() {
return panFingerprint;
}
}