cbat 0.0.18

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

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Balance {
    pub value: String,    // Amount of currency that this object represents
    pub currency: String, // Denomination of the currency
}