Interface TransactionType

interface TransactionType {
    amount: number;
    id: string;
    object: string;
    operations: OperationType[];
    status: string;
    status_reason: string;
}

Properties

amount: number
id: string
object: string
operations: OperationType[]
status: string
status_reason: string

Generated using TypeDoc