csgoempire 0.1.0

CSGOEmpire REST-API and Socket Bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct CancelDepositResponse {
    #[serde(default)]
    pub success: bool,
    pub data: Option<HashMap<String, Data>>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Data {
    pub success: bool,
    pub message: Option<String>,
}