/** * 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.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.CustomTableRate; import com.mozu.api.contracts.shippingadmin.Setting; /** * Properties of a carrier configured in the shipping admin. */ @JsonIgnoreProperties(ignoreUnknown = true) public class CarrierConfiguration implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Specifies whether credentials for the carrier are set. */ protected Boolean areCredentialsSet; public Boolean getAreCredentialsSet() { return this.areCredentialsSet; } public void setAreCredentialsSet(Boolean areCredentialsSet) { this.areCredentialsSet = areCredentialsSet; } /** * Indicates if a capability, function tied to an Arc.js action, application, or price list is enabled for the tenant/site. If true, the capability/application/function/price list is enabled for the tenant. System-supplied and read-only with the exception of functions tied to an Arc.js action and price lists. */ protected Boolean enabled; public Boolean getEnabled() { return this.enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * Specifies whether the carrier is enabled for creating RMA labels. */ protected Boolean enabledForReturns; public Boolean getEnabledForReturns() { return this.enabledForReturns; } public void setEnabledForReturns(Boolean enabledForReturns) { this.enabledForReturns = enabledForReturns; } /** * 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; } /** * 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; } /** * A list of any custom table rates for the carrier. */ protected List<CustomTableRate> customTableRates; public List<CustomTableRate> getCustomTableRates() { return this.customTableRates; } public void setCustomTableRates(List<CustomTableRate> customTableRates) { this.customTableRates = customTableRates; } /** * Wrapper for a group of properties such as a label that includes a value and a locale code, audit information, and a key-value pair. */ protected List<Setting> settings; public List<Setting> getSettings() { return this.settings; } public void setSettings(List<Setting> settings) { this.settings = settings; } }