/** * 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.HandlingFeeRule ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class HandlingFeeRule implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The level at which this fee applies shippingrate order */ protected String appliesTo; public String getAppliesTo() { return this.appliesTo; } public void setAppliesTo(String appliesTo) { this.appliesTo = appliesTo; } /** * Unique identifier of the source product property. For a product field it will be the name of the field. For a product attribute it will be the Attribute FQN. */ protected String id; public String getId() { return this.id; } public void setId(String id) { this.id = id; } /** * the product target rule codes associated with this rule leave empty or null to denote all products */ 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 shipping target rule codes associated with this rule leave empty or null to denote all destinations */ protected List<String> shippingTargetRuleCodes; public List<String> getShippingTargetRuleCodes() { return this.shippingTargetRuleCodes; } public void setShippingTargetRuleCodes(List<String> shippingTargetRuleCodes) { this.shippingTargetRuleCodes = shippingTargetRuleCodes; } /** * The value of a property, used by numerous objects within Mozu including facets, attributes, products, localized content, metadata, capabilities (Mozu and third-party), location inventory adjustment, and more. The value may be a string, integer, or double. Validation may be run against the entered and saved values depending on the object type. */ protected Double value; public Double getValue() { return this.value; } public void setValue(Double value) { this.value = value; } /** * An attribute value type is either predefined vocabulary by the admin during attribute set up or user-defined with an appropriate type (AdminEntered or ShopperEntered depending on the user). These types are used by products and attributes. The difference between predefined values versus manually entered values is such that the first choice is a set of options to choose from. AdminEntered and ShopperEntered are values that are entered rather than system-supplied and are not stored in the database, but captured during a live commerce operations such as during an order. */ protected String valueType; public String getValueType() { return this.valueType; } public void setValueType(String valueType) { this.valueType = valueType; } /** * Basic audit info about the object, including date, time, and user account. Identifier and datetime stamp information recorded when a user or application creates, updates, or deletes a resource entity. This value is system-supplied and read-only. */ protected AuditInfo auditInfo; public AuditInfo getAuditInfo() { return this.auditInfo; } public void setAuditInfo(AuditInfo auditInfo) { this.auditInfo = auditInfo; } /** * the servicetypes associated with this rule leave empty or null to denote all carriers and subsequent service types */ protected List<ServiceType> serviceTypes; public List<ServiceType> getServiceTypes() { return this.serviceTypes; } public void setServiceTypes(List<ServiceType> serviceTypes) { this.serviceTypes = serviceTypes; } }