INPUT_OBJECT
UpdateTextMessageInput
link GraphQL Schema definition
- input UpdateTextMessageInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Id of the chat conversation.
- : ID
- # Body of the message. May be plain text or a JSON payload (e.g. AI assistant
- # examples / suggestions).
- : String
- # Timestamp the message was sent.
- : DateTime
- # Direction of the message (Incoming, Outgoing).
- : EmailDirectionEnum
- # External message identifier from the SMS provider (e.g. Twilio Message SID).
- : String
- # Quality score given to the message by the user (e.g. for AI-suggested replies).
- # Used to feed back into the suggestion engine.
- : Int
- # Delivery status of the message (e.g. Sent, Delivered, Failed).
- : TextMessageStatusEnum
- # Id of the conversation.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Files attached to the message (e.g. MMS attachments).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }