CreatePresentationAuthorInput
Defines the input for creating an author while creating a presentation.
Exactly one of contactId
, contactAuthor
, or directAuthor
must be specified.
input CreatePresentationAuthorInput {
affiliations: String
contactAuthor: PresentationContactAuthorInput
contactId: ID @deprecated
directAuthor: PresentationDirectAuthorInput
isPresenting: Boolean!
notes: String
order: NonNegativeInt!
}
Fields
CreatePresentationAuthorInput.affiliations
● String
scalar
UTF-8 string value typically containing a comma-delimited list of affiliations. Optional.
CreatePresentationAuthorInput.contactAuthor
● PresentationContactAuthorInput
input
The details for an author who is associated with a contact. Optional.
CreatePresentationAuthorInput.contactId
● ID
deprecated scalar
DEPRECATED
Use contactAuthor
instead. This field will be removed in a future release.
The identifier of the contact whose information will be used to create the author. Optional.
CreatePresentationAuthorInput.directAuthor
● PresentationDirectAuthorInput
input
The details for an author who is not associated with a contact. Optional.
CreatePresentationAuthorInput.isPresenting
● Boolean!
non-null scalar
A flag indicating whether the author is presenting.
CreatePresentationAuthorInput.notes
● String
scalar
A UTF-8 string value representing any notes captured for the author. Optional.
CreatePresentationAuthorInput.order
● NonNegativeInt!
non-null scalar
The order the author appears in.
Member Of
CreatePresentationInput
input