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

com.bigcommerce.catalog.models.CustomFieldResponse Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.bigcommerce.catalog.models;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;

@XmlRootElement
public class CustomFieldResponse {
	private CustomField data;

	@XmlTransient
	private Meta meta = new Meta();

	public CustomField getData() {
		return data;
	}

	public void setData(CustomField data) {
		this.data = data;
	}

	public Meta getMeta() {
		return meta;
	}

	public void setMeta(Meta meta) {
		this.meta = meta;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy