Skip to main content

CreatePresentationDocumentTypeInput

Defines the input for creating a document type.

input CreatePresentationDocumentTypeInput {
eventId: ID!
format: DocumentFormat!
isPresentationSupportingDocument: Boolean
name: String!
order: NonNegativeInt!
sizeLimit: NonNegativeInt
uniqueCode: String
}

Fields

CreatePresentationDocumentTypeInput.eventId ● ID! non-null scalar

The identifier of the event the document type is associated with.

CreatePresentationDocumentTypeInput.format ● DocumentFormat! non-null enum

The format of the document type.

CreatePresentationDocumentTypeInput.isPresentationSupportingDocument ● Boolean scalar

A flag indicating whether the document type is for a supporting document for a presentation. Optional.

The default value is false.

CreatePresentationDocumentTypeInput.name ● String! non-null scalar

A UTF-8 String representing the name of the document type.

CreatePresentationDocumentTypeInput.order ● NonNegativeInt! non-null scalar

Specifies a number to use when sorting this document type in a list.

CreatePresentationDocumentTypeInput.sizeLimit ● NonNegativeInt scalar

The size limit of the document type. Optional.

FormatDescriptionDetails
IMAGEMaximum width in pixelsDefault: 0 (unlimited width)
LINKMaximum number of characters in the linkDefault: 0 (unlimited characters)
PDFMaximum file size in KBDefault: 0 (EventsAir limit of 15 MB)
TEXTMaximum word limitDefault: 0 (unlimited words)
UPLOADED_DOCUMENTMaximum file size in KBDefault: 0 (EventsAir limit of 15 MB)
VIDEO_URLMaximum number of characters in the linkDefault: 0 (unlimited characters)

CreatePresentationDocumentTypeInput.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

createPresentationDocumentType mutation