/** * 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.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Properties of a shipping rate calculated for a line item in a shipment. */ @JsonIgnoreProperties(ignoreUnknown = true) public class ShippingItemRate implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The calculated shipping amount for an item in a shipment. */ protected Double amount; public Double getAmount() { return this.amount; } public void setAmount(Double amount) { this.amount = amount; } /** * Unique identifier of an item used to calculate or request a shipping rate. */ protected String itemId; public String getItemId() { return this.itemId; } public void setItemId(String itemId) { this.itemId = itemId; } /** * The specified quantity of objects and items. This property is used for numerous object types including products, options, components within a product bundle, cart and order items, returned items, shipping line items, items in a digital product. and items associated with types and reservations. */ protected Integer quantity; public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } }