Interface CoinListResponseItem

interface CoinListResponseItem {
    id?: string;
    name?: string;
    platforms?: {
        [p: string]: string;
    };
    symbol?: string;
}

Hierarchy (view full)

Properties

id?: string
name?: string
platforms?: {
    [p: string]: string;
}
symbol?: string