bitpanda-api 0.1.0

Rust client for Bitpanda API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Fiat wallet

use rust_decimal::Decimal;

mod transaction;

pub use transaction::FiatWalletTransaction;

/// Defines a Bitpanda wallet for fiat currencies
#[derive(Debug, Clone, Eq, PartialEq, Hash, Deserialize)]
pub struct FiatWallet {
    pub balance: Decimal,
    pub fiat_id: String,
    pub id: String,
    pub name: String,
    pub pending_transactions_count: usize,
    pub symbol: String,
}