export type messages_CreateMessageInput = { /** * ChannelID identifies the channel the message is sent to. Required. Must be a bare UUID and must not include the GetStream 'messaging:' prefix. */ channelId: string; /** * SenderID optionally overrides the author of the message. When omitted, the authenticated user is used. When set it must be the UUID of a member of the channel. */ senderId?: string; /** * Text is the body of the message. Required. Limited to 5000 characters by GetStream. */ text: string; };