Beignet API reference
    Preparing search index...

    Interface IdempotencyCompleteInput

    Input for marking an idempotency key complete.

    interface IdempotencyCompleteInput {
        fingerprint: string;
        key: string;
        namespace: string;
        result?: unknown;
        scope?: IdempotencyScope;
    }
    Index

    Properties

    fingerprint: string

    Fingerprint that must match the reserved operation.

    key: string

    Client-provided idempotency key.

    namespace: string

    Operation namespace.

    result?: unknown

    Result to replay for future matching requests.

    Logical scope for this key.