INPUT_OBJECT

TicketCreateInput

Autogenerated input type of TicketCreate

link GraphQL Schema definition

  • input TicketCreateInput {
  • # An identifier that references the ticket. It must be unique within product (not
  • # to be confused with a productVariant). This field can be null if the
  • # ticketBatchId is provided.
  • identifier: String
  • # At what time starts the validity. Can be null if ticket is activated on first
  • # use.
  • validUntil: String
  • # At what time ends the validity. Can be null if ticket is activated on first use.
  • validFrom: String
  • # A unique identifier for the customer performing this operation. Values can be
  • # freely chosen. Directly identifying personal information is forbidden. System
  • # will treat this value as a blob.
  • customerIdentifier: String
  • # An ID that references the product variant.
  • productVariantId: HashId!
  • # An ID that references a TicketBatch, its productVariant must match the ticket's
  • # variant. If provided the ticket identifier will be automatically generated and
  • # the corresponding field can be empty.
  • batchId: HashId
  • # Defines maximum number of people who are allowed to use the ticket at the same
  • # time.
  • maxPax: Int
  • metadata: Metadata
  • # An ID that references an organization that will own this object. Can be empty if
  • # user belongs to only one organization.
  • organizationId: HashId
  • # A unique identifier for the client performing the mutation.
  • clientMutationId: String
  • }

link Require by