/** * 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.profile.HandlingFeeRule; import com.mozu.api.contracts.shippingadmin.profile.ShippingInclusionRule; /** * Mozu.ShippingAdmin.Contracts.Profile.ShippingProfile ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class ShippingProfile implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The unique code of the shipping profile. */ protected String code; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } /** * A list of unique site identifiers that the shipping profile targets. */ protected List<Integer> targetedSiteIds; public List<Integer> getTargetedSiteIds() { return this.targetedSiteIds; } public void setTargetedSiteIds(List<Integer> targetedSiteIds) { this.targetedSiteIds = targetedSiteIds; } /** * 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; } /** * A list of order handling fee rules and their details. */ protected List<HandlingFeeRule> orderHandlingFeeRules; public List<HandlingFeeRule> getOrderHandlingFeeRules() { return this.orderHandlingFeeRules; } public void setOrderHandlingFeeRules(List<HandlingFeeRule> orderHandlingFeeRules) { this.orderHandlingFeeRules = orderHandlingFeeRules; } /** * A list of product handling fee rules and their details. */ protected List<HandlingFeeRule> productHandlingFeeRules; public List<HandlingFeeRule> getProductHandlingFeeRules() { return this.productHandlingFeeRules; } public void setProductHandlingFeeRules(List<HandlingFeeRule> productHandlingFeeRules) { this.productHandlingFeeRules = productHandlingFeeRules; } /** * A list of shipping inclusion rules and their details. */ protected List<ShippingInclusionRule> shippingInclusionRules; public List<ShippingInclusionRule> getShippingInclusionRules() { return this.shippingInclusionRules; } public void setShippingInclusionRules(List<ShippingInclusionRule> shippingInclusionRules) { this.shippingInclusionRules = shippingInclusionRules; } }