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

org.adorsys.psd2.iso20022.camt053.ContactDetails2 Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt053;

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


/**
 * 

Java class for ContactDetails2 complex type. * *

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

 * <complexType name="ContactDetails2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="NmPrfx" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}NamePrefix1Code" minOccurs="0"/>
 *         <element name="Nm" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max140Text" minOccurs="0"/>
 *         <element name="PhneNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PhoneNumber" minOccurs="0"/>
 *         <element name="MobNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PhoneNumber" minOccurs="0"/>
 *         <element name="FaxNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PhoneNumber" minOccurs="0"/>
 *         <element name="EmailAdr" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max2048Text" minOccurs="0"/>
 *         <element name="Othr" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContactDetails2", propOrder = { "nmPrfx", "nm", "phneNb", "mobNb", "faxNb", "emailAdr", "othr" }) public class ContactDetails2 { @XmlElement(name = "NmPrfx") @XmlSchemaType(name = "string") protected NamePrefix1Code nmPrfx; @XmlElement(name = "Nm") protected String nm; @XmlElement(name = "PhneNb") protected String phneNb; @XmlElement(name = "MobNb") protected String mobNb; @XmlElement(name = "FaxNb") protected String faxNb; @XmlElement(name = "EmailAdr") protected String emailAdr; @XmlElement(name = "Othr") protected String othr; /** * Gets the value of the nmPrfx property. * * @return * possible object is * {@link NamePrefix1Code } * */ public NamePrefix1Code getNmPrfx() { return nmPrfx; } /** * Sets the value of the nmPrfx property. * * @param value * allowed object is * {@link NamePrefix1Code } * */ public void setNmPrfx(NamePrefix1Code value) { this.nmPrfx = value; } /** * Gets the value of the nm property. * * @return * possible object is * {@link String } * */ public String getNm() { return nm; } /** * Sets the value of the nm property. * * @param value * allowed object is * {@link String } * */ public void setNm(String value) { this.nm = value; } /** * Gets the value of the phneNb property. * * @return * possible object is * {@link String } * */ public String getPhneNb() { return phneNb; } /** * Sets the value of the phneNb property. * * @param value * allowed object is * {@link String } * */ public void setPhneNb(String value) { this.phneNb = value; } /** * Gets the value of the mobNb property. * * @return * possible object is * {@link String } * */ public String getMobNb() { return mobNb; } /** * Sets the value of the mobNb property. * * @param value * allowed object is * {@link String } * */ public void setMobNb(String value) { this.mobNb = value; } /** * Gets the value of the faxNb property. * * @return * possible object is * {@link String } * */ public String getFaxNb() { return faxNb; } /** * Sets the value of the faxNb property. * * @param value * allowed object is * {@link String } * */ public void setFaxNb(String value) { this.faxNb = value; } /** * Gets the value of the emailAdr property. * * @return * possible object is * {@link String } * */ public String getEmailAdr() { return emailAdr; } /** * Sets the value of the emailAdr property. * * @param value * allowed object is * {@link String } * */ public void setEmailAdr(String value) { this.emailAdr = value; } /** * Gets the value of the othr property. * * @return * possible object is * {@link String } * */ public String getOthr() { return othr; } /** * Sets the value of the othr property. * * @param value * allowed object is * {@link String } * */ public void setOthr(String value) { this.othr = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy