Interface MessagesOperations
interface MessagesOperations { create: ((threadId: string,
role: MessageRole,
content: MessageInputContent,
options?: MessagesCreateMessageOptionalParams) => Promise<ThreadMessage>); get: ((threadId: string,
messageId: string,
options?: MessagesGetMessageOptionalParams) => Promise<ThreadMessage>); list: ((threadId: string,
options?: MessagesListMessagesOptionalParams) => PagedAsyncIterableIterator<ThreadMessage, {}, PageSettings>); update: ((threadId: string,
messageId: string,
options?: MessagesUpdateMessageOptionalParams) => Promise<ThreadMessage>); } Properties
Interface representing a Messages operations.