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

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

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

 * <complexType name="AsyncGetListResult">
 *   <complexContent>
 *     <extension base="{urn:messages_2023_1.platform.webservices.netsuite.com}AsyncResult">
 *       <sequence>
 *         <element ref="{urn:messages_2023_1.platform.webservices.netsuite.com}readResponseList"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AsyncGetListResult", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = { "readResponseList" }) public class AsyncGetListResult extends AsyncResult { @XmlElement(required = true) protected ReadResponseList readResponseList; /** * Gets the value of the readResponseList property. * * @return * possible object is * {@link ReadResponseList } * */ public ReadResponseList getReadResponseList() { return readResponseList; } /** * Sets the value of the readResponseList property. * * @param value * allowed object is * {@link ReadResponseList } * */ public void setReadResponseList(ReadResponseList value) { this.readResponseList = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy