com.prowidesoftware.swift.model.mx.dic.ProcessingRequestV01 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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;
/**
* The Processing Request message is sent by a participant to a central system to request the initiation of a system process suported by a central system.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProcessingRequestV01", propOrder = {
"msgId",
"sttlmSsnIdr",
"req"
})
public class ProcessingRequestV01 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
@XmlElement(name = "SttlmSsnIdr")
protected String sttlmSsnIdr;
@XmlElement(name = "Req", required = true)
protected RequestDetails19 req;
/**
* 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 ProcessingRequestV01 setMsgId(String value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the sttlmSsnIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSttlmSsnIdr() {
return sttlmSsnIdr;
}
/**
* Sets the value of the sttlmSsnIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ProcessingRequestV01 setSttlmSsnIdr(String value) {
this.sttlmSsnIdr = value;
return this;
}
/**
* Gets the value of the req property.
*
* @return
* possible object is
* {@link RequestDetails19 }
*
*/
public RequestDetails19 getReq() {
return req;
}
/**
* Sets the value of the req property.
*
* @param value
* allowed object is
* {@link RequestDetails19 }
*
*/
public ProcessingRequestV01 setReq(RequestDetails19 value) {
this.req = 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