Skip to main content

TextDocument

Represents an text document that is attached to a Presentation in EventsAir.

type TextDocument implements AttachedDocument {
createdAt: DateTime!
createdBy: String
dateReceived: DateTime
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
notes: String
text: String
type: DocumentType!
}

Fields

TextDocument.createdAt ● DateTime! non-null scalar

The date and time the record was created.

TextDocument.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

TextDocument.dateReceived ● DateTime scalar

The date and time the document was received. Optional.

TextDocument.id ● ID! non-null scalar

The unique identifier for the document.

TextDocument.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

TextDocument.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

TextDocument.notes ● String scalar

UTF-8 string value containing any notes against the document. Optional.

TextDocument.text ● String scalar

UTF-8 string value containing the content of the text document. Optional.

TextDocument.type ● DocumentType! non-null interface

The type of the document.

Interfaces

AttachedDocument interface

Defines an instance of a document attached to a Presentation.