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

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

The newest version!
package com.bigcommerce.catalog.models;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class BrandResponse {

	private Brand data;

	private Meta meta = new Meta();

	public Brand getData() {
		return data;
	}

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

	public Meta getMeta() {
		return meta;
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy