Interface WebSocketStatusMessage

interface WebSocketStatusMessage {
    currencies: {
        convertible_to: string[];
        details: CurrencyDetail;
        funding_account_id: string;
        id: string;
        max_precision: string;
        min_size: string;
        name: string;
        status: "online";
        status_message?: string;
    }[];
    products: (Product & {
        type: "spot";
    })[];
    type: STATUS;
}

Properties

currencies: {
    convertible_to: string[];
    details: CurrencyDetail;
    funding_account_id: string;
    id: string;
    max_precision: string;
    min_size: string;
    name: string;
    status: "online";
    status_message?: string;
}[]
products: (Product & {
    type: "spot";
})[]
type: STATUS