com.bigcommerce.catalog.models.MetafieldsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigcommerce-sdk Show documentation
Show all versions of bigcommerce-sdk Show documentation
Java SDK for BigCommerce REST APIs
The newest version!
package com.bigcommerce.catalog.models;
import java.util.LinkedList;
import java.util.List;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class MetafieldsResponse {
private List data = new LinkedList<>();
private Meta meta = new Meta();
public List getData() {
return data;
}
public void setData(final List data) {
this.data = data;
}
public Meta getMeta() {
return meta;
}
public void setMeta(final Meta meta) {
this.meta = meta;
}
}