com.payu.sdk.api.model.CreditCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model;
public class CreditCard {
public String securityCode;
public String expirationDate;
private String token;
private String customerId;
private String number;
private Integer expMonth;
private Integer expYear;
private String type;
private String issuerBank;
private String name;
private String document;
private Address address;
private Boolean processWithoutCvv2;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getCustomerId() {
return customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public Integer getExpMonth() {
return expMonth;
}
public void setExpMonth(Integer expMonth) {
this.expMonth = expMonth;
}
public Integer getExpYear() {
return expYear;
}
public void setExpYear(Integer expYear) {
this.expYear = expYear;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public String getIssuerBank() {
return issuerBank;
}
public void setIssuerBank(String issuerBank) {
this.issuerBank = issuerBank;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDocument() {
return document;
}
public void setDocument(String document) {
this.document = document;
}
public String getSecurityCode() {
return securityCode;
}
public void setSecurityCode(String securityCode) {
this.securityCode = securityCode;
}
public String getExpirationDate() {
return expirationDate;
}
public void setExpirationDate(String expirationDate) {
this.expirationDate = expirationDate;
}
public Boolean getProcessWithoutCvv2() {
return processWithoutCvv2;
}
public void setProcessWithoutCvv2(Boolean processWithoutCvv2) {
this.processWithoutCvv2 = processWithoutCvv2;
}
}