
org.iso20022.pacs010_001.v05.GroupHeader92 Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:05:09 PM IST
//
package org.iso20022.pacs010_001.v05;
import java.math.BigDecimal;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Set of characteristics shared by all individual transactions included in the message.
*
* Java class for GroupHeader92 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GroupHeader92">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MsgId" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}Max35Text"/>
* <element name="CreDtTm" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}ISODateTime"/>
* <element name="NbOfTxs" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}Max15NumericText"/>
* <element name="CtrlSum" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}DecimalNumber" minOccurs="0"/>
* <element name="InstgAgt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}BranchAndFinancialInstitutionIdentification6" minOccurs="0"/>
* <element name="InstdAgt" type="{urn:iso:std:iso:20022:tech:xsd:pacs.010.001.05}BranchAndFinancialInstitutionIdentification6" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupHeader92", propOrder = {
"msgId",
"creDtTm",
"nbOfTxs",
"ctrlSum",
"instgAgt",
"instdAgt"
})
public class GroupHeader92 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
@XmlElement(name = "CreDtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "NbOfTxs", required = true)
protected String nbOfTxs;
@XmlElement(name = "CtrlSum")
protected BigDecimal ctrlSum;
@XmlElement(name = "InstgAgt")
protected BranchAndFinancialInstitutionIdentification6 instgAgt;
@XmlElement(name = "InstdAgt")
protected BranchAndFinancialInstitutionIdentification6 instdAgt;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMsgId(String value) {
this.msgId = value;
}
/**
* Gets the value of the creDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreDtTm() {
return creDtTm;
}
/**
* Sets the value of the creDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreDtTm(XMLGregorianCalendar value) {
this.creDtTm = value;
}
/**
* Gets the value of the nbOfTxs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfTxs() {
return nbOfTxs;
}
/**
* Sets the value of the nbOfTxs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNbOfTxs(String value) {
this.nbOfTxs = value;
}
/**
* Gets the value of the ctrlSum property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getCtrlSum() {
return ctrlSum;
}
/**
* Sets the value of the ctrlSum property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setCtrlSum(BigDecimal value) {
this.ctrlSum = value;
}
/**
* Gets the value of the instgAgt property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public BranchAndFinancialInstitutionIdentification6 getInstgAgt() {
return instgAgt;
}
/**
* Sets the value of the instgAgt property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public void setInstgAgt(BranchAndFinancialInstitutionIdentification6 value) {
this.instgAgt = value;
}
/**
* Gets the value of the instdAgt property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public BranchAndFinancialInstitutionIdentification6 getInstdAgt() {
return instdAgt;
}
/**
* Sets the value of the instdAgt property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification6 }
*
*/
public void setInstdAgt(BranchAndFinancialInstitutionIdentification6 value) {
this.instdAgt = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy