MessageBase_Input: {
    created_at: string;
    deleted: boolean;
    deleted_at: string | null;
    id: number;
    message_contents: MessageContent[];
    sender: string;
    sender_type: MessageSenderTypeEnum;
    thread_id: number;
    updated_at: string;
}

Base class for user queries and agent responses

Type declaration

  • created_at: string
  • deleted: boolean
  • deleted_at: string | null
  • id: number
  • message_contents: MessageContent[]
  • sender: string
  • sender_type: MessageSenderTypeEnum
  • thread_id: number
  • updated_at: string

Param: id:

the id of the message

Param: sender:

the name of the sender of the message

Param: sender_type:

the type of the sender of the message

Param: message_contents:

A list of the content pieces of the message

Generated using TypeDoc