Stone.js API
    Preparing search index...

    Represents the context for the Alibaba FC Adapter.

    This interface extends AdapterContext and includes additional properties specific to generic Alibaba FC events.

    interface AlibabaFcAdapterContext {
        executionContext: ExecutionContextType;
        incomingEvent?: IncomingEvent;
        incomingEventBuilder: IAdapterEventBuilder<
            IncomingEventOptions,
            IncomingEvent,
        >;
        outgoingResponse?: OutgoingResponse;
        rawEvent: AlibabaFcEvent;
        rawResponse: RawResponse;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<RawResponse>,
        >;
    }

    Hierarchy

    Index
    executionContext: ExecutionContextType

    The executionContext of type ExecutionContextType.

    incomingEvent?: IncomingEvent

    The incomingEvent associated with the executionContext.

    incomingEventBuilder: IAdapterEventBuilder<IncomingEventOptions, IncomingEvent>

    The incomingEventBuilder.

    outgoingResponse?: OutgoingResponse

    The outgoingResponse associated with the executionContext.

    rawEvent: AlibabaFcEvent

    The rawEvent of type RawEventType.

    rawResponse: RawResponse

    The raw response associated with the current context.

    rawResponseBuilder: IAdapterEventBuilder<
        RawResponseOptions,
        IRawResponseWrapper<RawResponse>,
    >

    The rawResponseBuilder.