/** * 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.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * 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; /** * The unique identifier of the catalog of products used by a site. */ 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; } /** * 3-letter ISO 4217 standard global currency code. Currently, only "USD" (US Dollar) is supported. */ protected String currencyCode; public String getCurrencyCode() { return this.currencyCode; } public void setCurrencyCode(String currencyCode) { this.currencyCode = currencyCode; } /** * The domain associated with the site and/or tenant. */ 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; } /** * Language used for the entity. Currently, only "en-US" is supported. */ protected String localeCode; public String getLocaleCode() { return this.localeCode; } public void setLocaleCode(String localeCode) { this.localeCode = localeCode; } /** * The display name of the source product property. For a product field it will be the display name of the field. For a product attribute it will be the Attribute Name. */ protected String name; public String getName() { return this.name; } public void setName(String name) { this.name = name; } /** * The primary custom domain of the site. */ protected String primaryCustomDomain; public String getPrimaryCustomDomain() { return this.primaryCustomDomain; } public void setPrimaryCustomDomain(String primaryCustomDomain) { this.primaryCustomDomain = primaryCustomDomain; } /** * Unique identifier of the Mozu tenant. */ protected Integer tenantId; public Integer getTenantId() { return this.tenantId; } public void setTenantId(Integer tenantId) { this.tenantId = tenantId; } }