UpdatePresentationDocumentTypeInput
Defines the input for updating a document type.
input UpdatePresentationDocumentTypeInput {
documentTypeId: ID!
eventId: ID!
format: DocumentFormat
isPresentationSupportingDocument: Boolean
name: String
order: NonNegativeInt
sizeLimit: NonNegativeInt
uniqueCode: String
}
Fields
UpdatePresentationDocumentTypeInput.documentTypeId
● ID!
non-null scalar
The identifier for the document type.
UpdatePresentationDocumentTypeInput.eventId
● ID!
non-null scalar
The identifier of the event the document type is associated with.
UpdatePresentationDocumentTypeInput.format
● DocumentFormat
enum
The format of the document type. Optional.
UpdatePresentationDocumentTypeInput.isPresentationSupportingDocument
● Boolean
scalar
A flag indicating whether the document type is for a supporting document for a presentation. Optional.
UpdatePresentationDocumentTypeInput.name
● String
scalar
A UTF-8 String representing the name of the document type. Optional.
UpdatePresentationDocumentTypeInput.order
● NonNegativeInt
scalar
Specifies a number to use when sorting this document type in a list. Optional.
UpdatePresentationDocumentTypeInput.sizeLimit
● NonNegativeInt
scalar
The size limit of the document type. Optional.
Format | Description | Details |
---|---|---|
IMAGE | Maximum width in pixels | Default: 0 (unlimited width) |
LINK | Maximum number of characters in the link | Default: 0 (unlimited characters) |
Maximum file size in KB | Default: 0 (EventsAir limit of 15 MB) | |
TEXT | Maximum word limit | Default: 0 (unlimited words) |
UPLOADED_DOCUMENT | Maximum file size in KB | Default: 0 (EventsAir limit of 15 MB) |
VIDEO_URL | Maximum number of characters in the link | Default: 0 (unlimited characters) |
UpdatePresentationDocumentTypeInput.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 in the event.
Member Of
updatePresentationDocumentType
mutation