Chartbreaker
    Preparing search index...

    Interface PerformedOrder

    interface PerformedOrder {
        decoupledOperationId?: string;
        isIncomplete?: boolean;
        orderReceipt?: OrderReceipt;
        waitForExecution?: (signal?: AbortSignal_2) => Promise<OrderReceipt>;
    }
    Index

    Properties

    decoupledOperationId?: string

    If the order has not actually been created, but only sent to a decoupled auth method (such as the mobile app of the broker), this may be set so that it can be observed.

    isIncomplete?: boolean
    orderReceipt?: OrderReceipt
    waitForExecution?: (signal?: AbortSignal_2) => Promise<OrderReceipt>