com.mercadopago.resources.datastructures.customer.card.Cardholder Maven / Gradle / Ivy
package com.mercadopago.resources.datastructures.customer.card;
/**
* Mercado Pago SDK
* Card Cardholder class
*
* Created by Eduardo Paoletta on 12/15/16.
*/
public class Cardholder {
private String name = null;
private Identification identification = null;
public String getName() {
return name;
}
public Cardholder setName(String name) {
this.name = name;
return this;
}
public Identification getIdentification() {
return identification;
}
public Cardholder setIdentification(Identification identification) {
this.identification = identification;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy