Interface ChatRequest

interface ChatRequest {
    displayText?: string;
    referencedRequestId?: string;
    text: string;
    variables?: readonly AIVariableResolutionRequest[];
}

Properties

displayText?: string
referencedRequestId?: string

If the request has been triggered in the context of an existing request, this id will be set to the id of the referenced request.

text: string
variables?: readonly AIVariableResolutionRequest[]