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

com.shopify.model.ShopifyCustomCollectionsRoot Maven / Gradle / Ivy

package com.shopify.model;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.LinkedList;
import java.util.List;

@XmlRootElement
public class ShopifyCustomCollectionsRoot {

	@XmlElement(name = "custom_collections")
	private List customCollections = new LinkedList();

	public List getCustomCollections() {
		return customCollections;
	}

	public void setCustomCollections(List customCollections) {
		this.customCollections = customCollections;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy