Interface PaymentFlowType

interface PaymentFlowType {
    amount: number;
    donation?: DonationType;
    error?: ErrorFlowType;
    instrument?: string;
    method: string;
    operation?: {
        id?: string;
    };
    status: string;
    token?: string;
}

Properties

amount: number
donation?: DonationType
instrument?: string
method: string
operation?: {
    id?: string;
}
status: string
token?: string