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 ticketInfo complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ticketInfo"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="insurance" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="orderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="seatNum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ticketPrice" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ticketType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ticketInfo", propOrder = { "insurance", "orderId", "seatNum", "ticketPrice", "ticketType" }) public class TicketInfo { protected String insurance; protected String orderId; protected String seatNum; protected String ticketPrice; protected String ticketType; /** * Gets the value of the insurance property. * * @return * possible object is * {@link String } * */ public String getInsurance() { return insurance; } /** * Sets the value of the insurance property. * * @param value * allowed object is * {@link String } * */ public void setInsurance(String value) { this.insurance = value; } /** * Gets the value of the orderId property. * * @return * possible object is * {@link String } * */ public String getOrderId() { return orderId; } /** * Sets the value of the orderId property. * * @param value * allowed object is * {@link String } * */ public void setOrderId(String value) { this.orderId = value; } /** * Gets the value of the seatNum property. * * @return * possible object is * {@link String } * */ public String getSeatNum() { return seatNum; } /** * Sets the value of the seatNum property. * * @param value * allowed object is * {@link String } * */ public void setSeatNum(String value) { this.seatNum = value; } /** * Gets the value of the ticketPrice property. * * @return * possible object is * {@link String } * */ public String getTicketPrice() { return ticketPrice; } /** * Sets the value of the ticketPrice property. * * @param value * allowed object is * {@link String } * */ public void setTicketPrice(String value) { this.ticketPrice = value; } /** * Gets the value of the ticketType property. * * @return * possible object is * {@link String } * */ public String getTicketType() { return ticketType; } /** * Sets the value of the ticketType property. * * @param value * allowed object is * {@link String } * */ public void setTicketType(String value) { this.ticketType = value; } }