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

com.mercadopago.resources.datastructures.customer.Shipment Maven / Gradle / Ivy

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

import java.lang.*;
import java.util.ArrayList;

/**
 * Mercado Pago SDK
 * Customer Address Verification Shipment class
 *
 * Created by Eduardo Paoletta on 12/15/16.
 */
public class Shipment {

    private Boolean success = null;
    private ArrayList errors = null;
    private String name = null;


    public Boolean getSuccess() {
        return success;
    }

    public ArrayList getErrors() {
        return errors;
    }

    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy