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

net.authorize.api.contract.v1.Paging Maven / Gradle / Ivy

//
// 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: 2018.06.13 at 02:31:45 PM IST 
//


package net.authorize.api.contract.v1;

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


/**
 * 

Java class for Paging complex type. * *

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

 * <complexType name="Paging">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="limit">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *               <minInclusive value="1"/>
 *               <maxInclusive value="1000"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="offset">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}int">
 *               <minInclusive value="1"/>
 *               <maxInclusive value="100000"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Paging", propOrder = { "limit", "offset" }) public class Paging { protected int limit; protected int offset; /** * Gets the value of the limit property. * */ public int getLimit() { return limit; } /** * Sets the value of the limit property. * */ public void setLimit(int value) { this.limit = value; } /** * Gets the value of the offset property. * */ public int getOffset() { return offset; } /** * Sets the value of the offset property. * */ public void setOffset(int value) { this.offset = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy