openlimits-coinbase 0.3.0

Coinbase implementation for OpenLimits.
Documentation
1
2
3
4
5
6
7
8
use serde::Deserialize;
use serde::Serialize;

/// This struct represents the cancellation of an order
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct CancelOrder {
    pub product_id: Option<String>,
}