// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.18 at 01:35:39 PM CET // package ch.fd.invoice400.request; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for guarantorAddressType complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="guarantorAddressType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element name="company" type="{http://www.xmlData.ch/xmlInvoice/XSD}guarantorCompanyType"/> * <element name="person" type="{http://www.xmlData.ch/xmlInvoice/XSD}guarantorPersonType"/> * </choice> * <attribute name="unique_id" type="{http://www.xmlData.ch/xmlInvoice/XSD}ssn13PartyType" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "guarantorAddressType", propOrder = { "company", "person" }) public class GuarantorAddressType { protected GuarantorCompanyType company; protected GuarantorPersonType person; @XmlAttribute(name = "unique_id") protected String uniqueId; /** * Gets the value of the company property. * * @return possible object is {@link GuarantorCompanyType } * */ public GuarantorCompanyType getCompany(){ return company; } /** * Sets the value of the company property. * * @param value * allowed object is {@link GuarantorCompanyType } * */ public void setCompany(GuarantorCompanyType value){ this.company = value; } /** * Gets the value of the person property. * * @return possible object is {@link GuarantorPersonType } * */ public GuarantorPersonType getPerson(){ return person; } /** * Sets the value of the person property. * * @param value * allowed object is {@link GuarantorPersonType } * */ public void setPerson(GuarantorPersonType value){ this.person = value; } /** * Gets the value of the uniqueId property. * * @return possible object is {@link String } * */ public String getUniqueId(){ return uniqueId; } /** * Sets the value of the uniqueId property. * * @param value * allowed object is {@link String } * */ public void setUniqueId(String value){ this.uniqueId = value; } }