UNPKG

@oystehr/sdk

Version:

Oystehr SDK

16 lines (14 loc) 475 B
// AUTOGENERATED -- DO NOT EDIT export interface ConversationMessageParams { /** * The message to send to the Conversation. Must be no more than 1600 characters. */ message: string; /** * A string metadata field you can use to store any data you wish. This data can be retrieved by all Conversation participants. The string value must contain structurally valid JSON if specified. */ attributes?: { [k: string]: any; }; conversationId: string; }