ConsigneeParty.java 2.4 KB
/**
  * Copyright 2018 bejson.com 
  */
package com.agent.xml.fhlsli.common;

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 com.agent.xml.fhlsli.fhl.SpecifiedTaxRegistration;

/**
 * Auto-generated: 2018-06-09 15:18:23
 *
 * @author bejson.com (i@bejson.com)
 * @website http://www.bejson.com/java2pojo/
 */
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
public class ConsigneeParty {

	@XmlElement(name = "PrimaryID",required = false)
	private String PrimaryID;
	@XmlElement(name = "Name",required = false)
	private String Name;
	@XmlElement(name = "LegalID",required = false)
	private String LegalID;
	@XmlElement(name = "AccountID",required = false)
	private String AccountID;
	@XmlElement(name = "PostalStructuredAddress",required = false)
	private PostalStructuredAddress PostalStructuredAddress;
	@XmlElement(name = "DefinedTradeContact",required = false)
	private DefinedTradeContact DefinedTradeContact;
	@XmlElement(name = "SpecifiedTaxRegistration",required = false)
	private SpecifiedTaxRegistration SpecifiedTaxRegistration;

	public void setPrimaryID(String PrimaryID) {
		this.PrimaryID = PrimaryID;
	}

	public String getPrimaryID() {
		return PrimaryID;
	}

	public void setName(String Name) {
		this.Name = Name;
	}

	public String getName() {
		return Name;
	}

	public void setLegalID(String LegalID) {
		this.LegalID = LegalID;
	}

	public String getLegalID() {
		return LegalID;
	}

	public void setAccountID(String AccountID) {
		this.AccountID = AccountID;
	}

	public String getAccountID() {
		return AccountID;
	}

	public void setPostalStructuredAddress(PostalStructuredAddress PostalStructuredAddress) {
		this.PostalStructuredAddress = PostalStructuredAddress;
	}

	public PostalStructuredAddress getPostalStructuredAddress() {
		return PostalStructuredAddress;
	}

	public void setDefinedTradeContact(DefinedTradeContact DefinedTradeContact) {
		this.DefinedTradeContact = DefinedTradeContact;
	}

	public DefinedTradeContact getDefinedTradeContact() {
		return DefinedTradeContact;
	}

	public void setSpecifiedTaxRegistration(SpecifiedTaxRegistration SpecifiedTaxRegistration) {
		this.SpecifiedTaxRegistration = SpecifiedTaxRegistration;
	}

	public SpecifiedTaxRegistration getSpecifiedTaxRegistration() {
		return SpecifiedTaxRegistration;
	}

}