pub struct CreateConditionalOrderResponse {
pub conditional_order_id: Option<Uuid>,
pub message: Option<String>,
pub state: Option<String>,
pub status: Option<String>,
}Expand description
CreateConditionalOrderResponse
JSON schema
{
"type": "object",
"properties": {
"conditional_order_id": {
"description": "Conditional order UUID",
"type": [
"string",
"null"
],
"format": "uuid"
},
"message": {
"description": "Human-readable status message",
"type": [
"string",
"null"
]
},
"state": {
"description": "Conditional order lifecycle state",
"examples": [
"ACTIVE"
],
"type": [
"string",
"null"
]
},
"status": {
"description": "Result status",
"examples": [
"SUCCESS"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§conditional_order_id: Option<Uuid>Conditional order UUID
message: Option<String>Human-readable status message
state: Option<String>Conditional order lifecycle state
status: Option<String>Result status
Trait Implementations§
Source§impl Clone for CreateConditionalOrderResponse
impl Clone for CreateConditionalOrderResponse
Source§fn clone(&self) -> CreateConditionalOrderResponse
fn clone(&self) -> CreateConditionalOrderResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for CreateConditionalOrderResponse
impl<'de> Deserialize<'de> for CreateConditionalOrderResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CreateConditionalOrderResponse
impl RefUnwindSafe for CreateConditionalOrderResponse
impl Send for CreateConditionalOrderResponse
impl Sync for CreateConditionalOrderResponse
impl Unpin for CreateConditionalOrderResponse
impl UnsafeUnpin for CreateConditionalOrderResponse
impl UnwindSafe for CreateConditionalOrderResponse
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
Mutably borrows from an owned value. Read more