package net.tooan.ynpay.order.eadd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for serialCustom complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="serialCustom"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="customCard" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="customCardType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="customName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="customTel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "serialCustom", propOrder = { "customCard", "customCardType", "customName", "customTel" }) public class SerialCustom { protected String customCard; protected String customCardType; protected String customName; protected String customTel; /** * Gets the value of the customCard property. * * @return * possible object is * {@link String } * */ public String getCustomCard() { return customCard; } /** * Sets the value of the customCard property. * * @param value * allowed object is * {@link String } * */ public void setCustomCard(String value) { this.customCard = value; } /** * Gets the value of the customCardType property. * * @return * possible object is * {@link String } * */ public String getCustomCardType() { return customCardType; } /** * Sets the value of the customCardType property. * * @param value * allowed object is * {@link String } * */ public void setCustomCardType(String value) { this.customCardType = value; } /** * Gets the value of the customName property. * * @return * possible object is * {@link String } * */ public String getCustomName() { return customName; } /** * Sets the value of the customName property. * * @param value * allowed object is * {@link String } * */ public void setCustomName(String value) { this.customName = value; } /** * Gets the value of the customTel property. * * @return * possible object is * {@link String } * */ public String getCustomTel() { return customTel; } /** * Sets the value of the customTel property. * * @param value * allowed object is * {@link String } * */ public void setCustomTel(String value) { this.customTel = value; } }