INPUT_OBJECT
CreatePublicTicketMutationInput
The input object that defines the fields for the createPublicTicket mutation.
link GraphQL Schema definition
- input CreatePublicTicketMutationInput {
 - #   The subject.
 - : String!
 - #   A human readable description.
 - : Text!
 - #   The status.
 - : TicketStatus!
 - #   The priority of a `Ticket`.
 - : TicketPriority!
 - #   The date this invoice is due by.
 - : Date
 - #   The type of entity that this `Ticket` is associated with.
 - : TicketableType
 - #   The ID of the entity that this `Ticket` is associated with.
 - : Int64Bit
 - #   The ID of the `Ticket` that this `Ticket` is a child of.
 - : Int64Bit
 - #   The ID of a `TicketGroup`.
 - : Int64Bit
 - #   The ID of a User.
 - : Int64Bit
 - #   IDs of `TicketCategory`s.
 - : [Int64Bit]
 - #   The ID of an `InboundMailbox`.
 - : Int64Bit!
 - #   Recipients for ticket replies.
 - : [CreateTicketRecipientDuringTicketCreationMutationInput]
 - #   Data to insert into custom fields.
 - : [CustomFieldDataMutationInput]
 - #   If IDs of `CustomField` objects that are associated with this entity are 
 - #   provided here, they will be unset and removed. You cannot unset data where the 
 - #   `CustomField` property `required` is set to `true`.
 - : [Int64Bit]
 - #   A list of file IDs to be associated with this object. These must first have been 
 - #   uploaded to the /files endpoint and must be currently unassociated.
 - : [AssociateFileMutationInput]
 - #   The task to be performed.
 - : [TaskMutationInput]
 - #   Allows subscribing to notifications for this entity.
 - : SubscriptionMutationInput
 - }