UpdatePresentationAuthorInput
Defines the input for creating/updating an author while updating a presentation.
input UpdatePresentationAuthorInput {
affiliations: String
contactId: ID
id: ID
isPresenting: Boolean!
notes: String
order: NonNegativeInt!
}
Fields
UpdatePresentationAuthorInput.affiliations
● String
scalar
UTF-8 string value typically containing a comma-delimited list of affiliations. Optional.
UpdatePresentationAuthorInput.contactId
● ID
scalar
The identifier of the contact whose information will be used to create the author. Optional.
Rules:
- You must specify either
id
orcontactId
. - If
id
is specified, thencontactId
will be ignored.
UpdatePresentationAuthorInput.id
● ID
scalar
The identifier of an existing author to update. Optional.
Rules:
- You must specify either
id
orcontactId
. - If
id
is not specified,contactId
must be specified and must refer to an existing contact.
UpdatePresentationAuthorInput.isPresenting
● Boolean!
non-null scalar
A flag indicating whether the author is presenting.
UpdatePresentationAuthorInput.notes
● String
scalar
A UTF-8 string value representing any notes captured for the author. Optional.
UpdatePresentationAuthorInput.order
● NonNegativeInt!
non-null scalar
The order the author appears in.
Member Of
UpdatePresentationInput
input