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

com.mercadopago.resources.datastructures.customer.card.SecurityCode Maven / Gradle / Ivy

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

/**
 * Mercado Pago SDK
 * Card Security Code class
 *
 * Created by Eduardo Paoletta on 12/15/16.
 */
public class SecurityCode {

    private Integer length = null;
    private String cardLocation = null;


    public Integer getLength() {
        return length;
    }

    public SecurityCode setLength(Integer length) {
        this.length = length;
        return this;
    }

    public String getCardLocation() {
        return cardLocation;
    }

    public SecurityCode setCardLocation(String cardLocation) {
        this.cardLocation = cardLocation;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy