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

com.mercadopago.resources.datastructures.advancedpayment.Phone Maven / Gradle / Ivy

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

public class Phone {
    private String areaCode;
    private String number;
    private String extension;

    public String getAreaCode() {
        return areaCode;
    }

    public Phone setAreaCode(String areaCode) {
        this.areaCode = areaCode;
        return this;
    }

    public String getNumber() {
        return number;
    }

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

    public String getExtension() {
        return extension;
    }

    public Phone setExtension(String extension) {
        this.extension = extension;
        return this;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy