pub struct KrakenEmbedCancelCustomOrderPath {
pub order_id: KrakenEmbedCancelCustomOrderPathOrderId,
}Expand description
Path parameters for cancelling a custom order.
JSON schema
{
"title": "KrakenEmbedCancelCustomOrderPath",
"description": "Path parameters for cancelling a custom order.",
"type": "object",
"required": [
"order_id"
],
"properties": {
"order_id": {
"type": "string",
"minLength": 1
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_cancel_custom_order_path"
}Fields§
§order_id: KrakenEmbedCancelCustomOrderPathOrderIdTrait Implementations§
Source§impl Clone for KrakenEmbedCancelCustomOrderPath
impl Clone for KrakenEmbedCancelCustomOrderPath
Source§fn clone(&self) -> KrakenEmbedCancelCustomOrderPath
fn clone(&self) -> KrakenEmbedCancelCustomOrderPath
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 KrakenEmbedCancelCustomOrderPath
impl<'de> Deserialize<'de> for KrakenEmbedCancelCustomOrderPath
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
Source§impl From<&KrakenEmbedCancelCustomOrderPath> for KrakenEmbedCancelCustomOrderPath
impl From<&KrakenEmbedCancelCustomOrderPath> for KrakenEmbedCancelCustomOrderPath
Source§fn from(value: &KrakenEmbedCancelCustomOrderPath) -> Self
fn from(value: &KrakenEmbedCancelCustomOrderPath) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedCancelCustomOrderPath
impl RefUnwindSafe for KrakenEmbedCancelCustomOrderPath
impl Send for KrakenEmbedCancelCustomOrderPath
impl Sync for KrakenEmbedCancelCustomOrderPath
impl Unpin for KrakenEmbedCancelCustomOrderPath
impl UnsafeUnpin for KrakenEmbedCancelCustomOrderPath
impl UnwindSafe for KrakenEmbedCancelCustomOrderPath
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