com.unzer.payment.communication.json.JsonCardDetails Maven / Gradle / Ivy
package com.unzer.payment.communication.json;
/*-
* #%L
* Unzer Java SDK
* %%
* Copyright (C) 2020 Unzer E-Com GmbH
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
public class JsonCardDetails {
private String cardType;
private String account;
private String countryIsoA2;
private String countryName;
private String issuerName;
private String issuerUrl;
private String issuerPhoneNumber;
public String getCardType() {
return cardType;
}
public void setCardType(String cardType) {
this.cardType = cardType;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getCountryIsoA2() {
return countryIsoA2;
}
public void setCountryIsoA2(String countryIsoA2) {
this.countryIsoA2 = countryIsoA2;
}
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public String getIssuerName() {
return issuerName;
}
public void setIssuerName(String issuerName) {
this.issuerName = issuerName;
}
public String getIssuerUrl() {
return issuerUrl;
}
public void setIssuerUrl(String issuerUrl) {
this.issuerUrl = issuerUrl;
}
public String getIssuerPhoneNumber() {
return issuerPhoneNumber;
}
public void setIssuerPhoneNumber(String issuerPhoneNumber) {
this.issuerPhoneNumber = issuerPhoneNumber;
}
}