com.microsoft.bingads.v13.campaignmanagement.Paging Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Paging complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Paging", propOrder = {
"index",
"size"
})
public class Paging {
@XmlElement(name = "Index")
protected int index;
@XmlElement(name = "Size")
protected int size;
/**
* Gets the value of the index property.
*
*/
public int getIndex() {
return index;
}
/**
* Sets the value of the index property.
*
*/
public void setIndex(int value) {
this.index = value;
}
/**
* Gets the value of the size property.
*
*/
public int getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(int value) {
this.size = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy