com.mercadopago.resources.datastructures.customer.Verification Maven / Gradle / Ivy
package com.mercadopago.resources.datastructures.customer;
import java.util.ArrayList;
/**
* Mercado Pago SDK
* Customer Address Verification class
*
* Created by Eduardo Paoletta on 12/15/16.
*/
public class Verification {
private ArrayList shipments = null;
public ArrayList getShipments() {
return shipments;
}
}