whatcall - v0.0.0
    Preparing search index...

    Interface ScenarioResponse

    A user response to a specific scenario

    interface ScenarioResponse {
        firstResponse: string;
        id: string;
        latestResponse: string;
        scenarioId: string;
        uid: string;
    }
    Index

    Properties

    firstResponse: string

    The user’s initial response to the scenario. Once created this is never updated.

    id: string

    ID for the response (populated from document ID by converter)

    latestResponse: string

    The user’s most recent response to the scenario.

    scenarioId: string

    The scenario which this is a response to.

    Note – this is duplicated from the document path /scenarios/{scenarioId}/responses/{uid} and is stored in the response document to allow querying across scenario-responses collection.

    uid: string

    The user id (uid) for the user who submitted this response.

    Note – this is duplicated from the document id and is stored in the response document to allow querying across scenario-responses collection.