DocumentType
Defines a type of document that can be associated with a Presentation in EventsAir.
interface DocumentType {
createdAt: DateTime!
createdBy: String
format: DocumentFormat!
id: ID!
isPresentationSupportingDocument: Boolean!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
order: NonNegativeInt!
uniqueCode: String
}
Fields
DocumentType.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
DocumentType.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
DocumentType.format
● DocumentFormat!
non-null enum
The format of the document type.
DocumentType.id
● ID!
non-null scalar
The unique identifier for the document type.
DocumentType.isPresentationSupportingDocument
● Boolean!
non-null scalar
A flag indicating whether the document type is for a supporting document for a presentation. false
by default.
DocumentType.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
DocumentType.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
DocumentType.name
● String!
non-null scalar
A UTF-8 string value that represents the name the document type.
DocumentType.order
● NonNegativeInt!
non-null scalar
Specifies a number to use when sorting this document type in a list.
DocumentType.uniqueCode
● String
scalar
A customer supplied, UTF-8 string value that represents a unique code for the document type. Optional.
The value must be unique across all document types for an event.
Member Of
AttachedDocument
interface ● ImageDocument
object ● LinkDocument
object ● PDFDocument
object ● PresentationSetup
object ● TextDocument
object ● UploadedDocumentDocument
object ● VideoLinkDocument
object
Implemented By
ImageDocumentType
object ● LinkDocumentType
object ● PDFDocumentType
object ● TextDocumentType
object ● UploadedDocumentDocumentType
object ● VideoLinkDocumentType
object