package com.experian.payline.ws.obj; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * This element contains element for a wallet * * * <p>Java class for wallet complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="wallet"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="walletId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="shippingAddress" type="{http://obj.ws.payline.experian.com}address"/> * <element name="card" type="{http://obj.ws.payline.experian.com}card"/> * <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "wallet", propOrder = { "walletId", "lastName", "firstName", "email", "shippingAddress", "card", "comment" }) public class Wallet { @XmlElement(required = true) protected String walletId; @XmlElement(required = true, nillable = true) protected String lastName; @XmlElement(required = true, nillable = true) protected String firstName; @XmlElement(required = true, nillable = true) protected String email; @XmlElement(required = true, nillable = true) protected Address shippingAddress; @XmlElement(required = true) protected Card card; @XmlElement(required = true, nillable = true) protected String comment; /** * Gets the value of the walletId property. * * @return * possible object is * {@link String } * */ public String getWalletId() { return walletId; } /** * Sets the value of the walletId property. * * @param value * allowed object is * {@link String } * */ public void setWalletId(String value) { this.walletId = value; } /** * Gets the value of the lastName property. * * @return * possible object is * {@link String } * */ public String getLastName() { return lastName; } /** * Sets the value of the lastName property. * * @param value * allowed object is * {@link String } * */ public void setLastName(String value) { this.lastName = value; } /** * Gets the value of the firstName property. * * @return * possible object is * {@link String } * */ public String getFirstName() { return firstName; } /** * Sets the value of the firstName property. * * @param value * allowed object is * {@link String } * */ public void setFirstName(String value) { this.firstName = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } /** * Gets the value of the shippingAddress property. * * @return * possible object is * {@link Address } * */ public Address getShippingAddress() { return shippingAddress; } /** * Sets the value of the shippingAddress property. * * @param value * allowed object is * {@link Address } * */ public void setShippingAddress(Address value) { this.shippingAddress = value; } /** * Gets the value of the card property. * * @return * possible object is * {@link Card } * */ public Card getCard() { return card; } /** * Sets the value of the card property. * * @param value * allowed object is * {@link Card } * */ public void setCard(Card value) { this.card = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } }