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

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

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

/**
 * Created by jibaceta on 8/8/17.
 */
public class ShippingMethod {

    private Integer id = null;

    public ShippingMethod(){};
    public ShippingMethod(Integer id) {
        this.id=id;
    }

    public void ShippingMethod(Integer id){
        this.id=id;
    }

    public ShippingMethod setId(Integer id) {
        this.id = id;
        return this;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy