
tsg.ns.wsdl.coop.GetSelectValueResult 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 GetSelectValueResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetSelectValueResult">
* <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="totalPages" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element ref="{urn:core_2023_1.platform.webservices.netsuite.com}baseRefList" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetSelectValueResult", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = {
"status",
"totalRecords",
"totalPages",
"baseRefList"
})
public class GetSelectValueResult {
@XmlElement(required = true)
protected Status status;
protected Integer totalRecords;
protected Integer totalPages;
protected BaseRefList baseRefList;
/**
* 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 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 baseRefList property.
*
* @return
* possible object is
* {@link BaseRefList }
*
*/
public BaseRefList getBaseRefList() {
return baseRefList;
}
/**
* Sets the value of the baseRefList property.
*
* @param value
* allowed object is
* {@link BaseRefList }
*
*/
public void setBaseRefList(BaseRefList value) {
this.baseRefList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy