com.shopify.model.ShopifyErrors Maven / Gradle / Ivy
package com.shopify.model;
import java.util.LinkedList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ShopifyErrors {
@XmlElement(name = "shipping_address")
private List shippingAddressErrors = new LinkedList<>();
public List getShippingAddressErrors() {
return shippingAddressErrors;
}
public void setShippingAddressErrors(final List shippingAddressErrors) {
this.shippingAddressErrors = shippingAddressErrors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy