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 ==.impl StructuralPartialEq for OrderReplyMessageOrderReplyMessage
Auto Trait Implementations§
impl Freeze for OrderReplyMessageOrderReplyMessage
impl RefUnwindSafe for OrderReplyMessageOrderReplyMessage
impl Send for OrderReplyMessageOrderReplyMessage
impl Sync for OrderReplyMessageOrderReplyMessage
impl Unpin for OrderReplyMessageOrderReplyMessage
impl UnsafeUnpin for OrderReplyMessageOrderReplyMessage
impl UnwindSafe for OrderReplyMessageOrderReplyMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ServiceExt for T
impl<T> ServiceExt for T
§fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
fn trace_for_http(self) -> Trace<Self, SharedClassifier<ServerErrorsAsFailures>>where
Self: Sized,
§fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
fn trace_for_grpc(self) -> Trace<Self, SharedClassifier<GrpcErrorsAsFailures>>where
Self: Sized,
§fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
fn follow_redirects(self) -> FollowRedirect<Self>where
Self: Sized,
§fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_request_id<M>(
self,
header_name: HeaderName,
make_request_id: M,
) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
§fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
fn set_x_request_id<M>(self, make_request_id: M) -> SetRequestId<Self, M>where
Self: Sized,
M: MakeRequestId,
x-request-id as the header name. Read more§fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_request_id(
self,
header_name: HeaderName,
) -> PropagateRequestId<Self>where
Self: Sized,
§fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
fn propagate_x_request_id(self) -> PropagateRequestId<Self>where
Self: Sized,
x-request-id as the header name. Read more§fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
fn request_body_limit(self, limit: usize) -> RequestBodyLimit<Self>where
Self: Sized,
413 Payload Too Large responses. Read more