exante 0.2.0

HTTP client for Exante REST API version 3.0
Documentation
use serde::Deserialize;

/// Account status.
#[derive(Debug, Deserialize)]
pub enum Status {
    ReadOnly,
    CloseOnly,
    Full,
}

/// User account and it's status.
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Account {
    /// Account status.
    pub status: Status,
    /// Account ID.
    pub account_id: String,
}