com.mozu.api.contracts.shippingadmin.TargetRule 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.shippingadmin;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.joda.time.DateTime;
import java.io.IOException;
import java.lang.ClassNotFoundException;
/**
* Mozu.ShippingAdmin.Contracts.TargetRule ApiType DOCUMENT_HERE
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class TargetRule implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
/**
* code ApiType DOCUMENT_HERE
*/
protected String code;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
/**
* The localized description in text for the object, displayed per the locale code. For example, descriptions are used for product descriptions, attributes, and pre-authorization transaction types.
*/
protected String description;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
/**
* Properties of the domain that the tenant is associated with such as the domain name, the zone string, audit information (system-supplied and read-only), assignment data, and whether or not the domain is primary or requires a SSL for authentication.
*/
protected String domain;
public String getDomain() {
return this.domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
/**
* expression ApiType DOCUMENT_HERE
*/
protected String expression;
public String getExpression() {
return this.expression;
}
public void setExpression(String expression) {
this.expression = expression;
}
}