export type messages_Message = { /** * ChannelID is the channel the message belongs to (bare UUID, without the GetStream 'messaging:' prefix). */ channelId: string; createdAt?: string; creatorId?: string; data?: string; id?: string; identityId?: string; /** * IsAttachmentIncluded indicates whether the message has one or more attachments. */ isAttachmentIncluded?: boolean; /** * Object is the resource type discriminator, always "message". */ object?: string; previousAttributes?: Record; ref?: string; /** * SenderID is the UUID of the member who authored the message. */ senderId: string; /** * Text is the body of the message. Empty when the message only carries attachments. */ text?: string; updatedAt?: string; };