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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy