Beignet API reference
    Preparing search index...

    Interface IdempotencyReserveInput

    Input for reserving an idempotency key.

    interface IdempotencyReserveInput {
        fingerprint: string;
        key: string;
        namespace: string;
        scope?: IdempotencyScope;
        ttlSec?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    fingerprint: string

    Fingerprint of the logical command payload.

    key: string

    Client-provided idempotency key.

    namespace: string

    Operation namespace, usually a use-case or route name.

    Logical scope for this key.

    ttlSec?: number

    Optional key time-to-live in seconds.