com.prowidesoftware.swift.model.mx.dic.Camt00300103 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
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 org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Scope
* The GetAccount message is sent by a member to the transaction administrator.
* It is used to request information on the details of one or more accounts held at the transaction administrator, including information on the balances.
* Usage
* At any time during the operating hours of the system, the member can query the transaction administrator to get information about the account(s) that the transaction administrator maintains for the member.
* For example, this may be necessary in order to perform the appropriate liquidity management and the funds transfers between accounts.
* The member can request information about accounts through a series of criteria, corresponding to the known information stored at the transaction administrator.
* The query can concern one or more specific accounts, accounts of a particular identification, or a particular type. The purpose of the query may be to obtain one or more types of balance.
* The member can request information based on the following elements:
* - account identification
* - account type (this element can be used to refine the query when the account identification represents, for example, a group of accounts)
* - balance type (if not present, all balances are requested)
* - type of counterparty: bilateral or multilateral (note that, by default, a balance is multilateral unless a particular counterparty is specified)
* - identification of the counterparty when a bilateral balance is requested
* - balance value date (if not present in the GetAccount message, the ReturnAccount message will contain the latest available balance)
* This message will be answered by a ReturnAccount message.
* Additional information on the generic design of the Get/Return messages can be found in the section How to Use the Cash Management Messages.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "camt.003.001.03", propOrder = {
"msgId",
"acctQryDef"
})
public class Camt00300103 {
@XmlElement(name = "MsgId", required = true)
protected MessageIdentification msgId;
@XmlElement(name = "AcctQryDef")
protected AccountQueryDefinition3 acctQryDef;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link MessageIdentification }
*
*/
public MessageIdentification getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link MessageIdentification }
*
*/
public Camt00300103 setMsgId(MessageIdentification value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the acctQryDef property.
*
* @return
* possible object is
* {@link AccountQueryDefinition3 }
*
*/
public AccountQueryDefinition3 getAcctQryDef() {
return acctQryDef;
}
/**
* Sets the value of the acctQryDef property.
*
* @param value
* allowed object is
* {@link AccountQueryDefinition3 }
*
*/
public Camt00300103 setAcctQryDef(AccountQueryDefinition3 value) {
this.acctQryDef = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy