Stone.js API
    Preparing search index...

    Interface AdapterErrorContext<RawEventType, RawResponseType, ExecutionContextType>

    Class representing an AdapterErrorContext.

    interface AdapterErrorContext<
        RawEventType,
        RawResponseType,
        ExecutionContextType,
    > {
        executionContext: ExecutionContextType;
        rawEvent: RawEventType;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<RawResponseType>,
        >;
    }

    Type Parameters

    • RawEventType
    • RawResponseType
    • ExecutionContextType
    Index
    executionContext: ExecutionContextType

    The executionContext of type ExecutionContextType.

    rawEvent: RawEventType

    The rawEvent of type RawEventType.

    The rawResponseBuilder.