Interface AppliedEscrowDisputeOperation

If either the sender or receiver of an escrow payment has an issue, they can raise it for dispute. Once a payment is in dispute, the agent has authority over who gets what.

interface AppliedEscrowDisputeOperation {
    block: number;
    op: {
        type: "escrow_dispute_operation";
        value: {
            agent: string;
            escrow_id: number;
            from: string;
            to: string;
            who: string;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "escrow_dispute_operation";
    value: {
        agent: string;
        escrow_id: number;
        from: string;
        to: string;
        who: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number