package com.tuscanyscatours.payment; 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 MakePaymentMemberType complex type. * *

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

 * <complexType name="MakePaymentMemberType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="CustomerId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="Amount" type="{http://www.w3.org/2001/XMLSchema}float"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MakePaymentMemberType", propOrder = { "customerId", "amount" }) public class MakePaymentMemberType { @XmlElement(name = "CustomerId", required = true) protected String customerId; @XmlElement(name = "Amount") protected float amount; /** * Gets the value of the customerId property. * * @return * possible object is * {@link String } * */ public String getCustomerId() { return customerId; } /** * Sets the value of the customerId property. * * @param value * allowed object is * {@link String } * */ public void setCustomerId(String value) { this.customerId = value; } /** * Gets the value of the amount property. * */ public float getAmount() { return amount; } /** * Sets the value of the amount property. * */ public void setAmount(float value) { this.amount = value; } }