pub enum Order200Response3 {
OrderSubmitSuccess(OrderSubmitSuccess),
OrderReplyMessage(OrderReplyMessage),
OrderSubmitError(OrderSubmitError),
AdvancedOrderReject(AdvancedOrderReject),
}Variants§
OrderSubmitSuccess(OrderSubmitSuccess)
A successful submission of one or more order tickets.
OrderReplyMessage(OrderReplyMessage)
An array containing objects that each deliver the order reply messages emitted against one order ticket in the submission request’s array. Indicies of the order reply message objects in this array correspond to the indicies of the order tickets in the submission request’s array.
OrderSubmitError(OrderSubmitError)
Indicates that the order reply message or submission was not accepted.
AdvancedOrderReject(AdvancedOrderReject)
Relates a message generated in response to the rejection of the submitted order ticket. In some cases, it may also present a mechanism to resubmit the same order following a prompted decision.
Implementations§
Source§impl Order200Response3
impl Order200Response3
Sourcepub fn order_submit_error(error: Option<String>) -> Self
pub fn order_submit_error(error: Option<String>) -> Self
Indicates that the order reply message or submission was not accepted.
Sourcepub fn advanced_order_reject() -> Self
pub fn advanced_order_reject() -> Self
Relates a message generated in response to the rejection of the submitted order ticket. In some cases, it may also present a mechanism to resubmit the same order following a prompted decision.
Trait Implementations§
Source§impl Clone for Order200Response3
impl Clone for Order200Response3
Source§fn clone(&self) -> Order200Response3
fn clone(&self) -> Order200Response3
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more