pub struct SuccessResponse {
pub order_id: String,
pub product_id: String,
pub side: OrderSide,
pub client_order_id: String,
}Expand description
Contains information when an order is successfully created.
Fields§
§order_id: StringThe ID of the order.
product_id: StringThe trading pair (e.g., ‘BTC-USD’).
side: OrderSideThe side of the market that the order is on (‘BUY’ or ‘SELL’).
client_order_id: StringThe unique ID provided for the order (used for identification purposes).
Trait Implementations§
Source§impl Debug for SuccessResponse
impl Debug for SuccessResponse
Source§impl<'de> Deserialize<'de> for SuccessResponse
impl<'de> Deserialize<'de> for SuccessResponse
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 SuccessResponse
impl RefUnwindSafe for SuccessResponse
impl Send for SuccessResponse
impl Sync for SuccessResponse
impl Unpin for SuccessResponse
impl UnwindSafe for SuccessResponse
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