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

tsg.ns.wsdl.coop.GetSelectValueRequest 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 getSelectValueRequest complex type. * *

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

 * <complexType name="getSelectValueRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fieldDescription" type="{urn:core_2023_1.platform.webservices.netsuite.com}GetSelectValueFieldDescription"/>
 *         <element name="pageIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getSelectValueRequest", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = { "fieldDescription", "pageIndex" }) public class GetSelectValueRequest { @XmlElement(required = true) protected GetSelectValueFieldDescription fieldDescription; protected int pageIndex; /** * Gets the value of the fieldDescription property. * * @return * possible object is * {@link GetSelectValueFieldDescription } * */ public GetSelectValueFieldDescription getFieldDescription() { return fieldDescription; } /** * Sets the value of the fieldDescription property. * * @param value * allowed object is * {@link GetSelectValueFieldDescription } * */ public void setFieldDescription(GetSelectValueFieldDescription value) { this.fieldDescription = value; } /** * Gets the value of the pageIndex property. * */ public int getPageIndex() { return pageIndex; } /** * Sets the value of the pageIndex property. * */ public void setPageIndex(int value) { this.pageIndex = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy