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

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

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

/**
 * Mercado Pago SDK
 * Phone Payer Payment   class
 *
 * Created by Eduardo Paoletta on 12/2/16.
 */
public class PayerPhone {

    private String areaCode = null;
    private String number = null;
    private String extension = null;

    public String getAreaCode() {
        return areaCode;
    }
    public String getNumber() {
        return number;
    }
    public String getExtension() {
        return extension;
    }
    public PayerPhone setAreaCode(String areaCode) {
        this.areaCode = areaCode;
        return this;
    }
    public PayerPhone setNumber(String number) {
        this.number = number;
        return this;
    }
    public PayerPhone setExtension(String extension) {
        this.extension = extension;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy