SentCommunication
Encapsulates information about a communication that has been sent to a contact.
type SentCommunication {
attachments: [Attachment!]
body: CommunicationBody
createdAt: DateTime!
createdBy: String
dateSent: DateTime!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
senderName: String!
subject: String
tagCode: String
type: CommunicationType!
}
Fields
SentCommunication.attachments ● [Attachment!] list object
The list of attachments for the communication. Optional.
SentCommunication.body ● CommunicationBody union
The body of the communication. Optional.
SentCommunication.createdAt ● DateTime! non-null scalar
The date and time the record was created.
SentCommunication.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
SentCommunication.dateSent ● DateTime! non-null scalar
The date and time the communication was sent.
SentCommunication.id ● ID! non-null scalar
The identifier of the sent communication.
SentCommunication.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
SentCommunication.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
SentCommunication.senderName ● String! non-null scalar
A UTF-8 string that represents the name of the sender for the sent communication.
SentCommunication.subject ● String scalar
A UTF-8 string that represents the subject for the sent communication. Optional.
SentCommunication.tagCode ● String scalar
The tag code for the communication. Optional.
SentCommunication.type ● CommunicationType! non-null enum
The type of the communication sent.
Member Of
Contact object