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

org.adorsys.psd2.iso20022.camt053.Product2 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 java.math.BigDecimal;
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 Product2 complex type. * *

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

 * <complexType name="Product2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="PdctCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max70Text"/>
 *         <element name="UnitOfMeasr" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}UnitOfMeasure1Code" minOccurs="0"/>
 *         <element name="PdctQty" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}DecimalNumber" minOccurs="0"/>
 *         <element name="UnitPric" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}ImpliedCurrencyAndAmount" minOccurs="0"/>
 *         <element name="PdctAmt" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}ImpliedCurrencyAndAmount" minOccurs="0"/>
 *         <element name="TaxTp" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
 *         <element name="AddtlPdctInf" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Product2", propOrder = { "pdctCd", "unitOfMeasr", "pdctQty", "unitPric", "pdctAmt", "taxTp", "addtlPdctInf" }) public class Product2 { @XmlElement(name = "PdctCd", required = true) protected String pdctCd; @XmlElement(name = "UnitOfMeasr") @XmlSchemaType(name = "string") protected UnitOfMeasure1Code unitOfMeasr; @XmlElement(name = "PdctQty") protected BigDecimal pdctQty; @XmlElement(name = "UnitPric") protected BigDecimal unitPric; @XmlElement(name = "PdctAmt") protected BigDecimal pdctAmt; @XmlElement(name = "TaxTp") protected String taxTp; @XmlElement(name = "AddtlPdctInf") protected String addtlPdctInf; /** * Gets the value of the pdctCd property. * * @return * possible object is * {@link String } * */ public String getPdctCd() { return pdctCd; } /** * Sets the value of the pdctCd property. * * @param value * allowed object is * {@link String } * */ public void setPdctCd(String value) { this.pdctCd = value; } /** * Gets the value of the unitOfMeasr property. * * @return * possible object is * {@link UnitOfMeasure1Code } * */ public UnitOfMeasure1Code getUnitOfMeasr() { return unitOfMeasr; } /** * Sets the value of the unitOfMeasr property. * * @param value * allowed object is * {@link UnitOfMeasure1Code } * */ public void setUnitOfMeasr(UnitOfMeasure1Code value) { this.unitOfMeasr = value; } /** * Gets the value of the pdctQty property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPdctQty() { return pdctQty; } /** * Sets the value of the pdctQty property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPdctQty(BigDecimal value) { this.pdctQty = value; } /** * Gets the value of the unitPric property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getUnitPric() { return unitPric; } /** * Sets the value of the unitPric property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setUnitPric(BigDecimal value) { this.unitPric = value; } /** * Gets the value of the pdctAmt property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPdctAmt() { return pdctAmt; } /** * Sets the value of the pdctAmt property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPdctAmt(BigDecimal value) { this.pdctAmt = value; } /** * Gets the value of the taxTp property. * * @return * possible object is * {@link String } * */ public String getTaxTp() { return taxTp; } /** * Sets the value of the taxTp property. * * @param value * allowed object is * {@link String } * */ public void setTaxTp(String value) { this.taxTp = value; } /** * Gets the value of the addtlPdctInf property. * * @return * possible object is * {@link String } * */ public String getAddtlPdctInf() { return addtlPdctInf; } /** * Sets the value of the addtlPdctInf property. * * @param value * allowed object is * {@link String } * */ public void setAddtlPdctInf(String value) { this.addtlPdctInf = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy