All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lyra.vads.ws.v5.BillingDetailsResponse Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package com.lyra.vads.ws.v5;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for billingDetailsResponse complex type. * *

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

 * <complexType name="billingDetailsResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="reference" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://v5.ws.vads.lyra.com/}custStatus" minOccurs="0"/>
 *         <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="phoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="streetNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="district" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="zipCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="city" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="language" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cellPhoneNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="legalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "billingDetailsResponse", propOrder = { "reference", "title", "type", "firstName", "lastName", "phoneNumber", "email", "streetNumber", "address", "district", "zipCode", "city", "state", "country", "language", "cellPhoneNumber", "legalName" }) public class BillingDetailsResponse { protected String reference; protected String title; protected CustStatus type; protected String firstName; protected String lastName; protected String phoneNumber; protected String email; protected String streetNumber; protected String address; protected String district; protected String zipCode; protected String city; protected String state; protected String country; protected String language; protected String cellPhoneNumber; protected String legalName; /** * Gets the value of the reference property. * * @return * possible object is * {@link String } * */ public String getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link String } * */ public void setReference(String value) { this.reference = value; } /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ public String getTitle() { return title; } /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ public void setTitle(String value) { this.title = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link CustStatus } * */ public CustStatus getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link CustStatus } * */ public void setType(CustStatus value) { this.type = 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 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 phoneNumber property. * * @return * possible object is * {@link String } * */ public String getPhoneNumber() { return phoneNumber; } /** * Sets the value of the phoneNumber property. * * @param value * allowed object is * {@link String } * */ public void setPhoneNumber(String value) { this.phoneNumber = 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 streetNumber property. * * @return * possible object is * {@link String } * */ public String getStreetNumber() { return streetNumber; } /** * Sets the value of the streetNumber property. * * @param value * allowed object is * {@link String } * */ public void setStreetNumber(String value) { this.streetNumber = value; } /** * Gets the value of the address property. * * @return * possible object is * {@link String } * */ public String getAddress() { return address; } /** * Sets the value of the address property. * * @param value * allowed object is * {@link String } * */ public void setAddress(String value) { this.address = value; } /** * Gets the value of the district property. * * @return * possible object is * {@link String } * */ public String getDistrict() { return district; } /** * Sets the value of the district property. * * @param value * allowed object is * {@link String } * */ public void setDistrict(String value) { this.district = value; } /** * Gets the value of the zipCode property. * * @return * possible object is * {@link String } * */ public String getZipCode() { return zipCode; } /** * Sets the value of the zipCode property. * * @param value * allowed object is * {@link String } * */ public void setZipCode(String value) { this.zipCode = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link String } * */ public String getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link String } * */ public void setCity(String value) { this.city = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the cellPhoneNumber property. * * @return * possible object is * {@link String } * */ public String getCellPhoneNumber() { return cellPhoneNumber; } /** * Sets the value of the cellPhoneNumber property. * * @param value * allowed object is * {@link String } * */ public void setCellPhoneNumber(String value) { this.cellPhoneNumber = value; } /** * Gets the value of the legalName property. * * @return * possible object is * {@link String } * */ public String getLegalName() { return legalName; } /** * Sets the value of the legalName property. * * @param value * allowed object is * {@link String } * */ public void setLegalName(String value) { this.legalName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy