1use serde::Deserialize; 2use serde::Serialize; 3 4/// This struct represents the cancellation of all orders 5#[derive(Serialize, Deserialize, Debug, Clone)] 6pub struct CancelAllOrders { 7 pub product_id: Option<String>, 8}