// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // nderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.04.19 um 09:36:45 AM CEST // package de.immobilienscout24.rest.schema.customer._1; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import de.immobilienscout24.rest.schema.common._1.Adapter1; /** * <p>Java-Klasse fr BillingDetailsType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="BillingDetailsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="taxNumber" type="{http://rest.immobilienscout24.de/schema/common/1.0}TextField" minOccurs="0"/> * <element name="paymentMethod" type="{http://rest.immobilienscout24.de/schema/customer/1.0}PaymentMethodType"/> * <element name="bankAccount" type="{http://rest.immobilienscout24.de/schema/customer/1.0}BankAccountType" minOccurs="0"/> * <element name="collectiveBilling" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="emailBilling" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="postage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="invoicingOptOut" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BillingDetailsType", propOrder = { "taxNumber", "paymentMethod", "bankAccount", "collectiveBilling", "emailBilling", "postage", "invoicingOptOut" }) public class BillingDetailsType { @XmlJavaTypeAdapter(Adapter1 .class) protected String taxNumber; @XmlElement(required = true) protected PaymentMethodType paymentMethod; protected BankAccountType bankAccount; protected Boolean collectiveBilling; protected Boolean emailBilling; protected Boolean postage; protected Boolean invoicingOptOut; /** * Ruft den Wert der taxNumber-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTaxNumber() { return taxNumber; } /** * Legt den Wert der taxNumber-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTaxNumber(String value) { this.taxNumber = value; } /** * Ruft den Wert der paymentMethod-Eigenschaft ab. * * @return * possible object is * {@link PaymentMethodType } * */ public PaymentMethodType getPaymentMethod() { return paymentMethod; } /** * Legt den Wert der paymentMethod-Eigenschaft fest. * * @param value * allowed object is * {@link PaymentMethodType } * */ public void setPaymentMethod(PaymentMethodType value) { this.paymentMethod = value; } /** * Ruft den Wert der bankAccount-Eigenschaft ab. * * @return * possible object is * {@link BankAccountType } * */ public BankAccountType getBankAccount() { return bankAccount; } /** * Legt den Wert der bankAccount-Eigenschaft fest. * * @param value * allowed object is * {@link BankAccountType } * */ public void setBankAccount(BankAccountType value) { this.bankAccount = value; } /** * Ruft den Wert der collectiveBilling-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isCollectiveBilling() { return collectiveBilling; } /** * Legt den Wert der collectiveBilling-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setCollectiveBilling(Boolean value) { this.collectiveBilling = value; } /** * Ruft den Wert der emailBilling-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isEmailBilling() { return emailBilling; } /** * Legt den Wert der emailBilling-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setEmailBilling(Boolean value) { this.emailBilling = value; } /** * Ruft den Wert der postage-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isPostage() { return postage; } /** * Legt den Wert der postage-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setPostage(Boolean value) { this.postage = value; } /** * Ruft den Wert der invoicingOptOut-Eigenschaft ab. * * @return * possible object is * {@link Boolean } * */ public Boolean isInvoicingOptOut() { return invoicingOptOut; } /** * Legt den Wert der invoicingOptOut-Eigenschaft fest. * * @param value * allowed object is * {@link Boolean } * */ public void setInvoicingOptOut(Boolean value) { this.invoicingOptOut = value; } }