All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mozu.api.contracts.shippingruntime.RatesResponse Maven / Gradle / Ivy

Go to download

Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform

There is a newer version: 2.6.1-RC1
Show newest version
/**
 *     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.shippingruntime;

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.shippingruntime.CarrierRatesResponse;

/**
 *	Properties of the calculated shipping rate based on the information supplied in the request.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class RatesResponse 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;
	}

	/**
	 * Resolved Shipping Zone Code. This value can be null if the tenant/site does not have shipping zones defined or there are no matching shipping zones for the request (e.g. the only zone defined is "UNITED-STATES" and the destination address of the rate request is in Canada)
	 */
	protected  String resolvedShippingZoneCode;

	public String getResolvedShippingZoneCode() {
		return this.resolvedShippingZoneCode;
	}

	public void setResolvedShippingZoneCode(String resolvedShippingZoneCode) {
		this.resolvedShippingZoneCode = resolvedShippingZoneCode;
	}

	/**
	 * A code denoting a zone for shipping rates. Zip and postal codes are associated to these zones, determining set rates and costs for shipping origin and destination points.
	 */
	protected List shippingZoneCodes;
	public List getShippingZoneCodes() {
		return this.shippingZoneCodes;
	}
	public void setShippingZoneCodes(List shippingZoneCodes) {
		this.shippingZoneCodes = shippingZoneCodes;
	}

	protected List rates;
	public List getRates() {
		return this.rates;
	}
	public void setRates(List rates) {
		this.rates = rates;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy