coingecko 1.1.3

Rust library for the CoinGecko V3 API
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(missing_docs)]
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct AssetPlatform {
    pub id: String,
    pub chain_identifier: Option<i64>,
    pub name: String,
    pub shortname: String,
    pub native_coin_id: String,
}