INPUT_OBJECT
CreateEmailMessageContentMutationInput
The input object that defines the fields for the createEmailMessageContent mutation.
link GraphQL Schema definition
- input CreateEmailMessageContentMutationInput {
- # A supported language.
- : Language!
- # A short sentence that will be shown as a preview in compatible email clients.
- : String
- # The subject.
- : String!
- # The body.
- : Text!
- # The ID of an EmailMessage.
- : Int64Bit!
- # A list of file IDs to be associated with this object. These must first have been
- # uploaded to the /files endpoint and must be currently unassociated.
- : [AssociateFileMutationInput]
- }