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

com.mercadopago.resources.datastructures.customer.Identification Maven / Gradle / Ivy

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

/**
 * Mercado Pago SDK
 * Customer Identification class
 *
 * Created by Eduardo Paoletta on 12/15/16.
 */
public class Identification {

    private String type = null;
    private String number = null;


    public String getType() {
        return type;
    }

    public Identification setType(String type) {
        this.type = type;
        return this;
    }

    public String getNumber() {
        return number;
    }

    public Identification setNumber(String number) {
        this.number = number;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy