
com.prowidesoftware.swift.model.mx.dic.AccountExcludedMandateMaintenanceAmendmentRequestV01 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
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 AccountExcludedMandateMaintenanceAmendmentRequest message is sent from an organisation to a financial institution as part of the account maintenance process. It is sent in response to a request from the financial institution to send additional information.
* Usage
* This update is about account details excluding any mandate information. The organisation will specify under the Account and Organisation tags the complete information as it should be in the financial institutions records after processing the update request.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountExcludedMandateMaintenanceAmendmentRequestV01", propOrder = {
"refs",
"ctrctDts",
"undrlygMstrAgrmt",
"acct",
"acctSvcrId",
"org",
"dgtlSgntr"
})
public class AccountExcludedMandateMaintenanceAmendmentRequestV01 {
@XmlElement(name = "Refs", required = true)
protected References4 refs;
@XmlElement(name = "CtrctDts")
protected AccountContract2 ctrctDts;
@XmlElement(name = "UndrlygMstrAgrmt")
protected ContractDocument1 undrlygMstrAgrmt;
@XmlElement(name = "Acct", required = true)
protected CustomerAccount1 acct;
@XmlElement(name = "AcctSvcrId", required = true)
protected BranchAndFinancialInstitutionIdentification4 acctSvcrId;
@XmlElement(name = "Org", required = true)
protected List org;
@XmlElement(name = "DgtlSgntr")
protected List dgtlSgntr;
/**
* Gets the value of the refs property.
*
* @return
* possible object is
* {@link References4 }
*
*/
public References4 getRefs() {
return refs;
}
/**
* Sets the value of the refs property.
*
* @param value
* allowed object is
* {@link References4 }
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 setRefs(References4 value) {
this.refs = value;
return this;
}
/**
* Gets the value of the ctrctDts property.
*
* @return
* possible object is
* {@link AccountContract2 }
*
*/
public AccountContract2 getCtrctDts() {
return ctrctDts;
}
/**
* Sets the value of the ctrctDts property.
*
* @param value
* allowed object is
* {@link AccountContract2 }
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 setCtrctDts(AccountContract2 value) {
this.ctrctDts = value;
return this;
}
/**
* Gets the value of the undrlygMstrAgrmt property.
*
* @return
* possible object is
* {@link ContractDocument1 }
*
*/
public ContractDocument1 getUndrlygMstrAgrmt() {
return undrlygMstrAgrmt;
}
/**
* Sets the value of the undrlygMstrAgrmt property.
*
* @param value
* allowed object is
* {@link ContractDocument1 }
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 setUndrlygMstrAgrmt(ContractDocument1 value) {
this.undrlygMstrAgrmt = value;
return this;
}
/**
* Gets the value of the acct property.
*
* @return
* possible object is
* {@link CustomerAccount1 }
*
*/
public CustomerAccount1 getAcct() {
return acct;
}
/**
* Sets the value of the acct property.
*
* @param value
* allowed object is
* {@link CustomerAccount1 }
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 setAcct(CustomerAccount1 value) {
this.acct = value;
return this;
}
/**
* Gets the value of the acctSvcrId property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public BranchAndFinancialInstitutionIdentification4 getAcctSvcrId() {
return acctSvcrId;
}
/**
* Sets the value of the acctSvcrId property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification4 }
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 setAcctSvcrId(BranchAndFinancialInstitutionIdentification4 value) {
this.acctSvcrId = value;
return this;
}
/**
* Gets the value of the org property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the org property.
*
*
* For example, to add a new item, do as follows:
*
* getOrg().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Organisation6 }
*
*
*/
public List getOrg() {
if (org == null) {
org = new ArrayList();
}
return this.org;
}
/**
* Gets the value of the dgtlSgntr property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dgtlSgntr property.
*
*
* For example, to add a new item, do as follows:
*
* getDgtlSgntr().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PartyAndSignature1 }
*
*
*/
public List getDgtlSgntr() {
if (dgtlSgntr == null) {
dgtlSgntr = new ArrayList();
}
return this.dgtlSgntr;
}
@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);
}
/**
* Adds a new item to the org list.
* @see #getOrg()
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 addOrg(Organisation6 org) {
getOrg().add(org);
return this;
}
/**
* Adds a new item to the dgtlSgntr list.
* @see #getDgtlSgntr()
*
*/
public AccountExcludedMandateMaintenanceAmendmentRequestV01 addDgtlSgntr(PartyAndSignature1 dgtlSgntr) {
getDgtlSgntr().add(dgtlSgntr);
return this;
}
}