Package net.authorize.api.contract.v1
Class Paging
- java.lang.Object
-
- net.authorize.api.contract.v1.Paging
-
public class Paging extends Object
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>
-
-
Constructor Summary
Constructors Constructor Description Paging()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLimit()Gets the value of the limit property.intgetOffset()Gets the value of the offset property.voidsetLimit(int value)Sets the value of the limit property.voidsetOffset(int value)Sets the value of the offset property.
-
-
-
Method Detail
-
getLimit
public int getLimit()
Gets the value of the limit property.
-
setLimit
public void setLimit(int value)
Sets the value of the limit property.
-
getOffset
public int getOffset()
Gets the value of the offset property.
-
setOffset
public void setOffset(int value)
Sets the value of the offset property.
-
-