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

com.omgm.speedy.eps.soap.model.ParamPackings Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for paramPackings complex type. * *

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

 * <complexType name="paramPackings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="packingId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * @since 2.3.0 */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "paramPackings", propOrder = { "count", "packingId" }) public class ParamPackings { /** * The number of packings * MANDATORY: YES */ protected int count; /** * Packing id * MANDATORY: YES */ protected long packingId; /** * Gets the value of the count property. * @return Number of packings */ public int getCount() { return count; } /** * Sets the value of the count property. * @param count Number of packings */ public void setCount(int count) { this.count = count; } /** * Gets the value of the packingId property. * @return Packing id */ public long getPackingId() { return packingId; } /** * Sets the value of the packingId property. * @param packingId Packing id */ public void setPackingId(long packingId) { this.packingId = packingId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy