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

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

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

import java.util.Date;

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

    private Number id = null;
    private String lastFourDigits = null;
    private String firstSixDigits = null;
    private Integer expirationYear = null;
    private Integer expirationMonth = null;
    private Date dateCreated = null;
    private Date dateLastUpdated = null;
    private Cardholder cardholder = null;


    public Number getId() {
        return id;
    }

    public String getLastFourDigits() {
        return lastFourDigits;
    }

    public String getFirstSixDigits() {
        return firstSixDigits;
    }

    public Integer getExpirationYear() {
        return expirationYear;
    }

    public Integer getExpirationMonth() {
        return expirationMonth;
    }

    public Date getDateCreated() {
        return dateCreated;
    }

    public Date getDateLastUpdated() {
        return dateLastUpdated;
    }

    public Cardholder getCardholder() {
        return cardholder;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy