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

org.adorsys.psd2.iso20022.camt054.ChargesRecord2 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.camt054;

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 ChargesRecord2 complex type. * *

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

 * <complexType name="ChargesRecord2">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Amt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ActiveOrHistoricCurrencyAndAmount"/>
 *         <element name="CdtDbtInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}CreditDebitCode" minOccurs="0"/>
 *         <element name="ChrgInclInd" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ChargeIncludedIndicator" minOccurs="0"/>
 *         <element name="Tp" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ChargeType3Choice" minOccurs="0"/>
 *         <element name="Rate" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}PercentageRate" minOccurs="0"/>
 *         <element name="Br" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ChargeBearerType1Code" minOccurs="0"/>
 *         <element name="Agt" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}BranchAndFinancialInstitutionIdentification5" minOccurs="0"/>
 *         <element name="Tax" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}TaxCharges2" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ChargesRecord2", propOrder = { "amt", "cdtDbtInd", "chrgInclInd", "tp", "rate", "br", "agt", "tax" }) public class ChargesRecord2 { @XmlElement(name = "Amt", required = true) protected ActiveOrHistoricCurrencyAndAmount amt; @XmlElement(name = "CdtDbtInd") @XmlSchemaType(name = "string") protected CreditDebitCode cdtDbtInd; @XmlElement(name = "ChrgInclInd") protected Boolean chrgInclInd; @XmlElement(name = "Tp") protected ChargeType3Choice tp; @XmlElement(name = "Rate") protected BigDecimal rate; @XmlElement(name = "Br") @XmlSchemaType(name = "string") protected ChargeBearerType1Code br; @XmlElement(name = "Agt") protected BranchAndFinancialInstitutionIdentification5 agt; @XmlElement(name = "Tax") protected TaxCharges2 tax; /** * Gets the value of the amt property. * * @return * possible object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public ActiveOrHistoricCurrencyAndAmount getAmt() { return amt; } /** * Sets the value of the amt property. * * @param value * allowed object is * {@link ActiveOrHistoricCurrencyAndAmount } * */ public void setAmt(ActiveOrHistoricCurrencyAndAmount value) { this.amt = value; } /** * Gets the value of the cdtDbtInd property. * * @return * possible object is * {@link CreditDebitCode } * */ public CreditDebitCode getCdtDbtInd() { return cdtDbtInd; } /** * Sets the value of the cdtDbtInd property. * * @param value * allowed object is * {@link CreditDebitCode } * */ public void setCdtDbtInd(CreditDebitCode value) { this.cdtDbtInd = value; } /** * Gets the value of the chrgInclInd property. * * @return * possible object is * {@link Boolean } * */ public Boolean isChrgInclInd() { return chrgInclInd; } /** * Sets the value of the chrgInclInd property. * * @param value * allowed object is * {@link Boolean } * */ public void setChrgInclInd(Boolean value) { this.chrgInclInd = value; } /** * Gets the value of the tp property. * * @return * possible object is * {@link ChargeType3Choice } * */ public ChargeType3Choice getTp() { return tp; } /** * Sets the value of the tp property. * * @param value * allowed object is * {@link ChargeType3Choice } * */ public void setTp(ChargeType3Choice value) { this.tp = value; } /** * Gets the value of the rate property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getRate() { return rate; } /** * Sets the value of the rate property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setRate(BigDecimal value) { this.rate = value; } /** * Gets the value of the br property. * * @return * possible object is * {@link ChargeBearerType1Code } * */ public ChargeBearerType1Code getBr() { return br; } /** * Sets the value of the br property. * * @param value * allowed object is * {@link ChargeBearerType1Code } * */ public void setBr(ChargeBearerType1Code value) { this.br = value; } /** * Gets the value of the agt property. * * @return * possible object is * {@link BranchAndFinancialInstitutionIdentification5 } * */ public BranchAndFinancialInstitutionIdentification5 getAgt() { return agt; } /** * Sets the value of the agt property. * * @param value * allowed object is * {@link BranchAndFinancialInstitutionIdentification5 } * */ public void setAgt(BranchAndFinancialInstitutionIdentification5 value) { this.agt = value; } /** * Gets the value of the tax property. * * @return * possible object is * {@link TaxCharges2 } * */ public TaxCharges2 getTax() { return tax; } /** * Sets the value of the tax property. * * @param value * allowed object is * {@link TaxCharges2 } * */ public void setTax(TaxCharges2 value) { this.tax = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy