package com.tuscanyscatours.emailgateway; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for SendEmailType complex type. * *

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

 * <complexType name="SendEmailType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Email" type="{http://www.tuscanyscatours.com/EmailGateway/}EmailType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SendEmailType", propOrder = { "email" }) public class SendEmailType { @XmlElement(name = "Email", required = true) protected EmailType email; /** * Gets the value of the email property. * * @return * possible object is * {@link EmailType } * */ public EmailType getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link EmailType } * */ public void setEmail(EmailType value) { this.email = value; } }