cbat 0.0.18

The unofficial Rust crate for the Coinbase Advanced Trade API
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Portfolio {
    pub name: Option<String>,
    pub uuid: Option<String>,
    #[serde(rename = "type")]
    pub o_type: Option<String>,
    pub deleted: Option<bool>,
}