
tsg.ns.wsdl.coop.GetDeletedResult Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
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 GetDeletedResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetDeletedResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}status"/>
* <element name="totalRecords" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="totalPages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="pageIndex" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}deletedRecordList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetDeletedResult", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"status",
"totalRecords",
"pageSize",
"totalPages",
"pageIndex",
"deletedRecordList"
})
public class GetDeletedResult {
@XmlElement(required = true)
protected Status status;
protected Integer totalRecords;
protected Integer pageSize;
protected Integer totalPages;
protected Integer pageIndex;
protected DeletedRecordList deletedRecordList;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link Status }
*
*/
public Status getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link Status }
*
*/
public void setStatus(Status value) {
this.status = value;
}
/**
* Gets the value of the totalRecords property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalRecords() {
return totalRecords;
}
/**
* Sets the value of the totalRecords property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalRecords(Integer value) {
this.totalRecords = value;
}
/**
* Gets the value of the pageSize property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPageSize() {
return pageSize;
}
/**
* Sets the value of the pageSize property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPageSize(Integer value) {
this.pageSize = value;
}
/**
* Gets the value of the totalPages property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTotalPages() {
return totalPages;
}
/**
* Sets the value of the totalPages property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTotalPages(Integer value) {
this.totalPages = value;
}
/**
* Gets the value of the pageIndex property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPageIndex() {
return pageIndex;
}
/**
* Sets the value of the pageIndex property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPageIndex(Integer value) {
this.pageIndex = value;
}
/**
* Gets the value of the deletedRecordList property.
*
* @return
* possible object is
* {@link DeletedRecordList }
*
*/
public DeletedRecordList getDeletedRecordList() {
return deletedRecordList;
}
/**
* Sets the value of the deletedRecordList property.
*
* @param value
* allowed object is
* {@link DeletedRecordList }
*
*/
public void setDeletedRecordList(DeletedRecordList value) {
this.deletedRecordList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy