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

com.newegg.marketplace.sdk.sbn.model.GetShipmentStatusResponse Maven / Gradle / Ivy

Go to download

The SBN (Shipped by Newegg) Management service group is designed to help you send your inventory to one of Newegg’s warehouse. Once your inventory is in a Newegg’s warehouse, you will be able to sell your items on Newegg, or you can sell the products on different channels then use Shipped by Newegg to ship your orders.

There is a newer version: 2.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.02.25 at 04:58:25 PM CST 
//


package com.newegg.marketplace.sdk.sbn.model;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonUnwrapped;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="IsSuccess">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="true"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="OperationType">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="GetShipmentStatusResponse"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="SellerID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="ResponseBody">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <all>
 *                   <element name="ResponseList">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <sequence maxOccurs="unbounded" minOccurs="0">
 *                             <element name="ResponseInfo">
 *                               <complexType>
 *                                 <complexContent>
 *                                   <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                                     <all>
 *                                       <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                                       <element name="ActionCode">
 *                                         <simpleType>
 *                                           <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
 *                                             <enumeration value="1"/>
 *                                             <enumeration value="2"/>
 *                                           </restriction>
 *                                         </simpleType>
 *                                       </element>
 *                                       <element name="RequestDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                                       <element name="RequestStatus">
 *                                         <simpleType>
 *                                           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *                                             <enumeration value="SUBMITTED"/>
 *                                             <enumeration value="IN_PROGRESS"/>
 *                                             <enumeration value="FINISHED"/>
 *                                             <enumeration value="CANCELLED"/>
 *                                           </restriction>
 *                                         </simpleType>
 *                                       </element>
 *                                     </all>
 *                                   </restriction>
 *                                 </complexContent>
 *                               </complexType>
 *                             </element>
 *                           </sequence>
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </all>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="Memo" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "NeweggAPIResponse") public class GetShipmentStatusResponse { @XmlElement(name = "IsSuccess", required = true) @JsonProperty("IsSuccess") protected boolean isSuccess; @XmlElement(name = "OperationType", required = true) @JsonProperty("OperationType") protected String operationType = "GetShipmentStatusResponse"; @XmlElement(name = "SellerID") @JsonProperty("SellerID") protected String sellerID; @XmlElement(name = "ResponseBody", required = true) @JsonProperty("ResponseBody") protected GetShipmentStatusResponse.ResponseBody responseBody; @XmlElement(name = "Memo") @JsonProperty("Memo") protected String memo; /** * Gets the value of the isSuccess property. * * @return * possible object is * {@link String } * */ public boolean getIsSuccess() { return isSuccess; } /** * Sets the value of the isSuccess property. * * @param value * allowed object is * {@link String } * */ public void setIsSuccess(boolean value) { this.isSuccess = value; } /** * Gets the value of the operationType property. * * @return * possible object is * {@link String } * */ public String getOperationType() { return operationType; } /** * Sets the value of the operationType property. * * @param value * allowed object is * {@link String } * */ public void setOperationType(String value) { this.operationType = value; } /** * Gets the value of the sellerID property. * * @return * possible object is * {@link String } * */ public String getSellerID() { return sellerID; } /** * Sets the value of the sellerID property. * * @param value * allowed object is * {@link String } * */ public void setSellerID(String value) { this.sellerID = value; } /** * Gets the value of the responseBody property. * * @return * possible object is * {@link GetShipmentStatusResponse.ResponseBody } * */ public GetShipmentStatusResponse.ResponseBody getResponseBody() { return responseBody; } /** * Sets the value of the responseBody property. * * @param value * allowed object is * {@link GetShipmentStatusResponse.ResponseBody } * */ public void setResponseBody(GetShipmentStatusResponse.ResponseBody value) { this.responseBody = value; } /** * Gets the value of the memo property. * * @return * possible object is * {@link String } * */ public String getMemo() { return memo; } /** * Sets the value of the memo property. * * @param value * allowed object is * {@link String } * */ public void setMemo(String value) { this.memo = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <all>
     *         <element name="ResponseList">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <sequence maxOccurs="unbounded" minOccurs="0">
     *                   <element name="ResponseInfo">
     *                     <complexType>
     *                       <complexContent>
     *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                           <all>
     *                             <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                             <element name="ActionCode">
     *                               <simpleType>
     *                                 <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
     *                                   <enumeration value="1"/>
     *                                   <enumeration value="2"/>
     *                                 </restriction>
     *                               </simpleType>
     *                             </element>
     *                             <element name="RequestDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *                             <element name="RequestStatus">
     *                               <simpleType>
     *                                 <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     *                                   <enumeration value="SUBMITTED"/>
     *                                   <enumeration value="IN_PROGRESS"/>
     *                                   <enumeration value="FINISHED"/>
     *                                   <enumeration value="CANCELLED"/>
     *                                 </restriction>
     *                               </simpleType>
     *                             </element>
     *                           </all>
     *                         </restriction>
     *                       </complexContent>
     *                     </complexType>
     *                   </element>
     *                 </sequence>
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </all>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class ResponseBody { @XmlElement(name = "ResponseList", required = true) //@JsonProperty("ResponseList") @JsonUnwrapped protected GetShipmentStatusResponse.ResponseBody.ResponseList responseList; /** * Gets the value of the responseList property. * * @return * possible object is * {@link GetShipmentStatusResponse.ResponseBody.ResponseList } * */ public GetShipmentStatusResponse.ResponseBody.ResponseList getResponseList() { return responseList; } /** * Sets the value of the responseList property. * * @param value * allowed object is * {@link GetShipmentStatusResponse.ResponseBody.ResponseList } * */ public void setResponseList(GetShipmentStatusResponse.ResponseBody.ResponseList value) { this.responseList = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence maxOccurs="unbounded" minOccurs="0">
         *         <element name="ResponseInfo">
         *           <complexType>
         *             <complexContent>
         *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *                 <all>
         *                   <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *                   <element name="ActionCode">
         *                     <simpleType>
         *                       <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
         *                         <enumeration value="1"/>
         *                         <enumeration value="2"/>
         *                       </restriction>
         *                     </simpleType>
         *                   </element>
         *                   <element name="RequestDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
         *                   <element name="RequestStatus">
         *                     <simpleType>
         *                       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         *                         <enumeration value="SUBMITTED"/>
         *                         <enumeration value="IN_PROGRESS"/>
         *                         <enumeration value="FINISHED"/>
         *                         <enumeration value="CANCELLED"/>
         *                       </restriction>
         *                     </simpleType>
         *                   </element>
         *                 </all>
         *               </restriction>
         *             </complexContent>
         *           </complexType>
         *         </element>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "responseInfo" }) public static class ResponseList { @XmlElement(name = "ResponseInfo") @JsonProperty("ResponseList") protected List responseInfo; /** * Gets the value of the responseInfo property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the responseInfo property. * *

* For example, to add a new item, do as follows: *

             *    getResponseInfo().add(newItem);
             * 
* * *

* Objects of the following type(s) are allowed in the list * {@link GetShipmentStatusResponse.ResponseBody.ResponseList.ResponseInfo } * * @return * Objects of the following type(s) are allowed in the list * {@link GetShipmentStatusResponse.ResponseBody.ResponseList.ResponseInfo } * */ public List getResponseInfo() { if (responseInfo == null) { responseInfo = new ArrayList(); } return this.responseInfo; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

             * <complexType>
             *   <complexContent>
             *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
             *       <all>
             *         <element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string"/>
             *         <element name="ActionCode">
             *           <simpleType>
             *             <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
             *               <enumeration value="1"/>
             *               <enumeration value="2"/>
             *             </restriction>
             *           </simpleType>
             *         </element>
             *         <element name="RequestDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
             *         <element name="RequestStatus">
             *           <simpleType>
             *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
             *               <enumeration value="SUBMITTED"/>
             *               <enumeration value="IN_PROGRESS"/>
             *               <enumeration value="FINISHED"/>
             *               <enumeration value="CANCELLED"/>
             *             </restriction>
             *           </simpleType>
             *         </element>
             *       </all>
             *     </restriction>
             *   </complexContent>
             * </complexType>
             * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class ResponseInfo { @XmlElement(name = "RequestId", required = true) @JsonProperty("RequestId") protected String requestId; @XmlElement(name = "ActionCode", required = true) @JsonProperty("ActionCode") protected BigInteger actionCode; @XmlElement(name = "RequestDate", required = true) @JsonProperty("RequestDate") protected String requestDate; @XmlElement(name = "RequestStatus", required = true) @JsonProperty("RequestStatus") protected String requestStatus; /** * Gets the value of the requestId property. * * @return * possible object is * {@link String } * */ public String getRequestId() { return requestId; } /** * Sets the value of the requestId property. * * @param value * allowed object is * {@link String } * */ public void setRequestId(String value) { this.requestId = value; } /** * Gets the value of the actionCode property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getActionCode() { return actionCode; } /** * Sets the value of the actionCode property. * * @param value * allowed object is * {@link BigInteger } * */ public void setActionCode(BigInteger value) { this.actionCode = value; } /** * Gets the value of the requestDate property. * * @return * possible object is * {@link String } * */ public String getRequestDate() { return requestDate; } /** * Sets the value of the requestDate property. * * @param value * allowed object is * {@link String } * */ public void setRequestDate(String value) { this.requestDate = value; } /** * Gets the value of the requestStatus property. * * @return * possible object is * {@link String } * */ public String getRequestStatus() { return requestStatus; } /** * Sets the value of the requestStatus property. * * @param value * allowed object is * {@link String } * */ public void setRequestStatus(String value) { this.requestStatus = value; } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy