Interface CurrencyDetail

interface CurrencyDetail {
    crypto_address_link: string;
    crypto_transaction_link: string;
    min_withdrawal_amount: number;
    network_confirmations: number;
    processing_time_seconds?: number;
    push_payment_methods: CurrencyType[];
    sort_order: number;
    symbol: string;
    type: CurrencyType;
}

Properties

crypto_address_link: string
crypto_transaction_link: string
min_withdrawal_amount: number
network_confirmations: number
processing_time_seconds?: number
push_payment_methods: CurrencyType[]
sort_order: number
symbol: string
type: CurrencyType