pub struct OrderReplyMessageOrderReplyMessage {
pub id: Option<String>,
pub is_suppressed: Option<bool>,
pub message: Option<Vec<String>>,
pub message_ids: Option<Vec<String>>,
}Expand description
An object containing order reply messages emitted against a single order ticket.
Fields§
§id: Option<String>The replyId UUID of the order ticket’s emitted order reply messages, used to confirm them and proceed. Use the POST /iserver/reply/{replyId} endpoint to confirm an order reply message.
is_suppressed: Option<bool>Internal use. Always delivers value ‘false’.
message: Option<Vec<String>>An array containing the human-readable text of all order reply messages emitted for the order ticket.
message_ids: Option<Vec<String>>An array containing identifiers that categorize the types of order reply messages that have been emitted. Elements of this array are ordered so that indicies match the corresponding human-readable text strings in the ‘message’ array. A messageId can typically be passed in the POST /iserver/questions/suppress endpoint to auto-accept a given warning message.
Trait Implementations§
Source§impl Clone for OrderReplyMessageOrderReplyMessage
impl Clone for OrderReplyMessageOrderReplyMessage
Source§fn clone(&self) -> OrderReplyMessageOrderReplyMessage
fn clone(&self) -> OrderReplyMessageOrderReplyMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<'de> Deserialize<'de> for OrderReplyMessageOrderReplyMessage
impl<'de> Deserialize<'de> for OrderReplyMessageOrderReplyMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for OrderReplyMessageOrderReplyMessage
impl PartialEq for OrderReplyMessageOrderReplyMessage
Source§fn eq(&self, other: &OrderReplyMessageOrderReplyMessage) -> bool
fn eq(&self, other: &OrderReplyMessageOrderReplyMessage) -> bool
self and other values to be equal, and is used by ==.