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

com.newegg.marketplace.sdk.sbn.model.GetWarehouseListRequest 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.26 at 04:28:01 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="OperationType">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <enumeration value="GetWarehouseRequest"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="RequestBody">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <all>
 *                   <element name="WarehouseCode" minOccurs="0">
 *                     <simpleType>
 *                       <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *                         <enumeration value="06"/>
 *                         <enumeration value="07"/>
 *                         <enumeration value="08"/>
 *                         <enumeration value="10"/>
 *                         <enumeration value="12"/>
 *                         <enumeration value="14"/>
 *                       </restriction>
 *                     </simpleType>
 *                   </element>
 *                 </all>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "NeweggAPIRequest") public class GetWarehouseListRequest { @XmlElement(name = "OperationType", required = true) @JsonProperty("OperationType") protected String operationType="GetWarehouseRequest"; @XmlElement(name = "RequestBody", required = true) @JsonProperty("RequestBody") protected GetWarehouseListRequest.RequestBody requestBody; /** * 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 requestBody property. * * @return * possible object is * {@link GetWarehouseListRequest.RequestBody } * */ public GetWarehouseListRequest.RequestBody getRequestBody() { return requestBody; } /** * Sets the value of the requestBody property. * * @param value * allowed object is * {@link GetWarehouseListRequest.RequestBody } * */ public void setRequestBody(GetWarehouseListRequest.RequestBody value) { this.requestBody = 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="WarehouseCode" minOccurs="0">
     *           <simpleType>
     *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
     *               <enumeration value="06"/>
     *               <enumeration value="07"/>
     *               <enumeration value="08"/>
     *               <enumeration value="10"/>
     *               <enumeration value="12"/>
     *               <enumeration value="14"/>
     *             </restriction>
     *           </simpleType>
     *         </element>
     *       </all>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class RequestBody { @XmlElement(name = "WarehouseCode") @JsonProperty("WarehouseCode") protected String warehouseCode; /** * Gets the value of the warehouseCode property. * * @return * possible object is * {@link Integer } * */ public String getWarehouseCode() { return warehouseCode; } /** * Sets the value of the warehouseCode property. * * @param value * allowed object is * {@link Integer } * */ public void setWarehouseCode(String value) { this.warehouseCode = value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy