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

com.mercadopago.resources.datastructures.preference.ExcludedPaymentMethod Maven / Gradle / Ivy

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

import com.mercadopago.core.annotations.validation.Size;

/**
 * Mercado Pago SDK
 * Excluded Payment Methods class
 *
 * Created by Eduardo Paoletta on 12/14/16.
 */
public class ExcludedPaymentMethod {

    @Size(max=256) private String id = null;

    public ExcludedPaymentMethod() {

    }

    public ExcludedPaymentMethod(String id) {
        this.id=id;
    }

    public void ExcludedPaymentMethod(String id){
        this.id=id;
    }

    public ExcludedPaymentMethod setId(String id) {
        this.id = id;
        return this;
    }

    public String getId() {
        return this.id;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy