com.mozu.api.contracts.tenant.Site Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.contracts.tenant;
import java.util.List;
import java.util.HashMap;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.joda.time.DateTime;
import java.io.IOException;
import java.lang.ClassNotFoundException;
import com.mozu.api.contracts.tenant.TenantAttribute;
/**
* Properties of a site associated with a tenant.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Site implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
protected Integer catalogId;
public Integer getCatalogId() {
return this.catalogId;
}
public void setCatalogId(Integer catalogId) {
this.catalogId = catalogId;
}
protected String countryCode;
public String getCountryCode() {
return this.countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
protected String currencyCode;
public String getCurrencyCode() {
return this.currencyCode;
}
public void setCurrencyCode(String currencyCode) {
this.currencyCode = currencyCode;
}
protected String domain;
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
protected Integer id;
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
protected String localeCode;
public String getLocaleCode() {
return this.localeCode;
}
public void setLocaleCode(String localeCode) {
this.localeCode = localeCode;
}
protected String name;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
protected String primaryCustomDomain;
public String getPrimaryCustomDomain() {
return this.primaryCustomDomain;
}
public void setPrimaryCustomDomain(String primaryCustomDomain) {
this.primaryCustomDomain = primaryCustomDomain;
}
protected Integer tenantId;
public Integer getTenantId() {
return this.tenantId;
}
public void setTenantId(Integer tenantId) {
this.tenantId = tenantId;
}
protected List attributes;
public List getAttributes() {
return this.attributes;
}
public void setAttributes(List attributes) {
this.attributes = attributes;
}
}