
tsg.ns.wsdl.coop.GetSavedSearchRequest 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 GetSavedSearchRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GetSavedSearchRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="record" type="{urn:core_2023_1.platform.webservices.netsuite.com}GetSavedSearchRecord"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetSavedSearchRequest", namespace = "urn:messages_2023_1.platform.webservices.netsuite.com", propOrder = {
"record"
})
public class GetSavedSearchRequest {
@XmlElement(required = true)
protected GetSavedSearchRecord record;
/**
* Gets the value of the record property.
*
* @return
* possible object is
* {@link GetSavedSearchRecord }
*
*/
public GetSavedSearchRecord getRecord() {
return record;
}
/**
* Sets the value of the record property.
*
* @param value
* allowed object is
* {@link GetSavedSearchRecord }
*
*/
public void setRecord(GetSavedSearchRecord value) {
this.record = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy