package com.sitewhere.assetmodule.magento.ws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for salesOrderShipmentTrackEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="salesOrderShipmentTrackEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="parent_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="updated_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="is_active" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="carrier_code" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="number" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="order_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="track_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "salesOrderShipmentTrackEntity", propOrder = { "incrementId", "parentId", "createdAt", "updatedAt", "isActive", "carrierCode", "title", "number", "orderId", "trackId" }) public class SalesOrderShipmentTrackEntity { @XmlElement(name = "increment_id") protected String incrementId; @XmlElement(name = "parent_id") protected String parentId; @XmlElement(name = "created_at") protected String createdAt; @XmlElement(name = "updated_at") protected String updatedAt; @XmlElement(name = "is_active") protected String isActive; @XmlElement(name = "carrier_code") protected String carrierCode; protected String title; protected String number; @XmlElement(name = "order_id") protected String orderId; @XmlElement(name = "track_id") protected String trackId; /** * Gets the value of the incrementId property. * * @return * possible object is * {@link String } * */ public String getIncrementId() { return incrementId; } /** * Sets the value of the incrementId property. * * @param value * allowed object is * {@link String } * */ public void setIncrementId(String value) { this.incrementId = value; } /** * Gets the value of the parentId property. * * @return * possible object is * {@link String } * */ public String getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link String } * */ public void setParentId(String value) { this.parentId = value; } /** * Gets the value of the createdAt property. * * @return * possible object is * {@link String } * */ public String getCreatedAt() { return createdAt; } /** * Sets the value of the createdAt property. * * @param value * allowed object is * {@link String } * */ public void setCreatedAt(String value) { this.createdAt = value; } /** * Gets the value of the updatedAt property. * * @return * possible object is * {@link String } * */ public String getUpdatedAt() { return updatedAt; } /** * Sets the value of the updatedAt property. * * @param value * allowed object is * {@link String } * */ public void setUpdatedAt(String value) { this.updatedAt = value; } /** * Gets the value of the isActive property. * * @return * possible object is * {@link String } * */ public String getIsActive() { return isActive; } /** * Sets the value of the isActive property. * * @param value * allowed object is * {@link String } * */ public void setIsActive(String value) { this.isActive = value; } /** * Gets the value of the carrierCode property. * * @return * possible object is * {@link String } * */ public String getCarrierCode() { return carrierCode; } /** * Sets the value of the carrierCode property. * * @param value * allowed object is * {@link String } * */ public void setCarrierCode(String value) { this.carrierCode = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the orderId property. * * @return * possible object is * {@link String } * */ public String getOrderId() { return orderId; } /** * Sets the value of the orderId property. * * @param value * allowed object is * {@link String } * */ public void setOrderId(String value) { this.orderId = value; } /** * Gets the value of the trackId property. * * @return * possible object is * {@link String } * */ public String getTrackId() { return trackId; } /** * Sets the value of the trackId property. * * @param value * allowed object is * {@link String } * */ public void setTrackId(String value) { this.trackId = value; } }