
com.prowidesoftware.swift.model.mx.dic.ListOrderStatusRequest Maven / Gradle / Ivy
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
* An instructing party, eg, an investment manager, sends the ListOrderStatusRequest message to an executing party, eg, a broker, to request the status of a ListOrder message.
* Usage
* No additional information
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ListOrderStatusRequest", propOrder = {
"id",
"listId"
})
public class ListOrderStatusRequest {
@XmlElement(name = "Id", required = true)
protected DocumentIdentification11 id;
@XmlElement(name = "ListId", required = true)
protected ListIdentification1 listId;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link DocumentIdentification11 }
*
*/
public DocumentIdentification11 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link DocumentIdentification11 }
*
*/
public ListOrderStatusRequest setId(DocumentIdentification11 value) {
this.id = value;
return this;
}
/**
* Gets the value of the listId property.
*
* @return
* possible object is
* {@link ListIdentification1 }
*
*/
public ListIdentification1 getListId() {
return listId;
}
/**
* Sets the value of the listId property.
*
* @param value
* allowed object is
* {@link ListIdentification1 }
*
*/
public ListOrderStatusRequest setListId(ListIdentification1 value) {
this.listId = 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