Interface ListAssistantMessagesRequest

The mixin for conversation ids in http labels.

interface ListAssistantMessagesRequest {
    assistantId: string;
    conversationId: string;
    nextToken?: string;
    pageSize?: number;
}

Hierarchy (View Summary)

Properties

assistantId: string

The unique identifier for this assistant in this assignment.

conversationId: string

The id of the conversation.

nextToken?: string

Token to get the next page of messages.

pageSize?: number

The amount of messages to return per page, at least 1, maximum 20.