Interface ListUserAssistantConversationsRequest

interface ListUserAssistantConversationsRequest {
    assignmentId: string;
    nextToken?: string;
    pageSize?: number;
    userId: string;
}

Hierarchy (View Summary)

Properties

assignmentId: string

Only conversations in this assignment will be retrieved.

nextToken?: string

Token to get the next page of conversations.

pageSize?: number

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

userId: string

The id of the user to which this conversation belongs.