/** * 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.profile; 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.core.AuditInfo; import com.mozu.api.contracts.shippingadmin.ServiceType; /** * Mozu.ShippingAdmin.Contracts.Profile.ShippingInclusionRule ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class ShippingInclusionRule implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Unique identifier of the source property, such as a catalog, discount, order, or email template.For a product field it will be the name of the field.For a category ID, must be a positive integer not greater than 2000000. By default, auto-generates a category ID when categories are created. If you want to specify an ID during creation (which preserves category link relationships when migrating tenant data from one sandbox to another), you must also include the query string in the endpoint. For example, . Then, use the property to specify the desired category ID.For a product attribute it will be the Attribute FQN.For a document, the ID must be specified as a 32 character, case-insensitive, alphanumeric string. You can specify the ID as 32 sequential characters or as groups separated by dashes in the format 8-4-4-4-12. For example, or.For email templates, the ID must be one of the following values: */ protected String id; public String getId() { return this.id; } public void setId(String id) { this.id = id; } /** * The unique codes of any product target rules associated with the shipping inclusion rule. */ protected List<String> productTargetRuleCodes; public List<String> getProductTargetRuleCodes() { return this.productTargetRuleCodes; } public void setProductTargetRuleCodes(List<String> productTargetRuleCodes) { this.productTargetRuleCodes = productTargetRuleCodes; } /** * The numeric order of objects, used by a vocabulary value defined for an extensible attribute, images, and categories. */ protected Integer sequence; public Integer getSequence() { return this.sequence; } public void setSequence(Integer sequence) { this.sequence = sequence; } /** * The unique codes of any shipping target rules associated with the shipping inclusion rule. */ protected List<String> shippingTargetRuleCodes; public List<String> getShippingTargetRuleCodes() { return this.shippingTargetRuleCodes; } public void setShippingTargetRuleCodes(List<String> shippingTargetRuleCodes) { this.shippingTargetRuleCodes = shippingTargetRuleCodes; } /** * Basic audit info about the object, including date, time, and user account. This data may be captured when creating, updating, and removing data. */ protected AuditInfo auditInfo; public AuditInfo getAuditInfo() { return this.auditInfo; } public void setAuditInfo(AuditInfo auditInfo) { this.auditInfo = auditInfo; } /** * An array of service type details that are associated with the shipping inclusion rule. */ protected List<ServiceType> serviceTypes; public List<ServiceType> getServiceTypes() { return this.serviceTypes; } public void setServiceTypes(List<ServiceType> serviceTypes) { this.serviceTypes = serviceTypes; } }