satim-module - v1.0.0
    Preparing search index...

    Interface WebhookResult

    Server-verified result of a webhook/callback invocation.

    interface WebhookResult {
        orderId: string;
        response: ConfirmResponse;
        duplicate: boolean;
    }
    Index

    Properties

    orderId: string

    The validated order ID extracted from the source.

    response: ConfirmResponse

    Authoritative ConfirmResponse fetched from SATIM via confirm(). Amount verification has already run on isSuccessful() responses.

    duplicate: boolean

    true when this orderId had already been processed (per the onCheckDuplicate strategy). Callers should NOT re-fulfil downstream side effects when this is set.