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

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

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 03:55:49 PM CST 
//


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

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;


/**
 * 

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" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="SellerID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ResponseBody">
 *           <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="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"/>
 *                       </restriction>
 *                     </simpleType>
 *                   </element>
 *                 </all>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "NeweggAPIResponse") public class SubmitInboundShipmentResponse { @XmlElement(name = "IsSuccess", required = true) @JsonProperty("IsSuccess") protected boolean isSuccess; @XmlElement(name = "OperationType", required = true) @JsonProperty("OperationType") protected String operationType = "SubmitShipmentResponse"; @XmlElement(name = "SellerID", required = true) @JsonProperty("SellerID") protected String sellerID; @XmlElement(name = "ResponseBody", required = true) @JsonProperty("ResponseBody") protected SubmitInboundShipmentResponse.ResponseBody responseBody; /** * 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 SubmitInboundShipmentResponse.ResponseBody } * */ public SubmitInboundShipmentResponse.ResponseBody getResponseBody() { return responseBody; } /** * Sets the value of the responseBody property. * * @param value * allowed object is * {@link SubmitInboundShipmentResponse.ResponseBody } * */ public void setResponseBody(SubmitInboundShipmentResponse.ResponseBody value) { this.responseBody = 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="RequestID" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <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"/>
     *             </restriction>
     *           </simpleType>
     *         </element>
     *       </all>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class ResponseBody { @XmlElement(name = "RequestID", required = true) @JsonProperty("RequestID") protected String requestID; @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 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