RestoreExhibitionBookingInput
Defines the input for restoring a canceled exhibition booking.
input RestoreExhibitionBookingInput {
eventId: ID!
exhibitionBookingId: ID!
exhibitorId: ID!
paymentStatus: PaymentStatusInput!
status: ExhibitionBookingStatusInput!
}
Fields
RestoreExhibitionBookingInput.eventId
● ID!
non-null scalar
The identifier of the event.
RestoreExhibitionBookingInput.exhibitionBookingId
● ID!
non-null scalar
The identifier of the exhibition booking.
RestoreExhibitionBookingInput.exhibitorId
● ID!
non-null scalar
The identifier of the exhibitor.
RestoreExhibitionBookingInput.paymentStatus
● PaymentStatusInput!
non-null enum
The new payment status of the exhibition booking.
RestoreExhibitionBookingInput.status
● ExhibitionBookingStatusInput!
non-null enum
The new status of the exhibition booking.
Member Of
restoreExhibitionBooking
mutation