Skip to main content

UpdateEventNoteTypeInput

Defines the input for updating a note type in an event.

input UpdateEventNoteTypeInput {
containsPersonalData: Boolean
customFields: [CustomFieldInput!]
eventId: ID!
name: String
noteTypeId: ID!
uniqueCode: String
}

Fields

UpdateEventNoteTypeInput.containsPersonalData ● Boolean scalar

A flag indicating whether the note type includes sensitive personal data. This is used by EventsAir to identify these fields for reporting to attendees, and when anonymizing or deleting a contact record for data privacy reasons. Optional.

UpdateEventNoteTypeInput.customFields ● [CustomFieldInput!] list input

The custom fields to create or update for the note type. Optional.

UpdateEventNoteTypeInput.eventId ● ID! non-null scalar

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

UpdateEventNoteTypeInput.name ● String scalar

A UTF-8 string representing the name of the note type. Optional.

UpdateEventNoteTypeInput.noteTypeId ● ID! non-null scalar

The identifier of the note type.

UpdateEventNoteTypeInput.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the note type. Optional.

The value must be unique across all note types for an event.

Member Of

updateEventNoteType mutation