RuleReplyTemplate
Represents an email message template used by rules.
type RuleReplyTemplate implements Timestamped {
attachments(
after: String
before: String
first: Int
last: Int
): AttachmentConnection!
body: String!
createdAt: DateTime!
id: ID!
subject: String
updatedAt: DateTime!
}
Fields
RuleReplyTemplate.attachments ● AttachmentConnection! non-null object common
All attachments on this template.
RuleReplyTemplate.attachments.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
RuleReplyTemplate.attachments.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
RuleReplyTemplate.attachments.first ● Int scalar common
Returns the first n elements from the list.
RuleReplyTemplate.attachments.last ● Int scalar common
Returns the last n elements from the list.
RuleReplyTemplate.body ● String! non-null scalar common
The body of the message in HTML.
RuleReplyTemplate.createdAt ● DateTime! non-null scalar common
The date and time that the object was created.
RuleReplyTemplate.id ● ID! non-null scalar common
RuleReplyTemplate.subject ● String scalar common
The subject of the conversation.
RuleReplyTemplate.updatedAt ● DateTime! non-null scalar common
The date and time that the object was last updated.
Interfaces
Timestamped interface common
An object with timestamp fields for when it was created and last updated.
Member of
RuleAction object