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