All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mercadopago.resources.datastructures.payment.Cardholder Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.resources.datastructures.payment;

/**
 * Mercado Pago SDK
 * Cardholder class
 *
 * Created by Eduardo Paoletta on 12/2/16.
 */
public class Cardholder {

    private String name = null;
    private Identification identification = null;


    public String getName() {
        return name;
    }

    public Identification getIdentification() {
        return identification;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy