Skip to main content

RestoreExhibitionBookingInput

Defines the input for restoring a canceled exhibition booking.

input RestoreExhibitionBookingInput {
eventId: ID!
exhibitionBookingId: ID!
exhibitorId: ID!
payingContactId: 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.payingContactId ● ID scalar

The identifier of the contact who pays for the item. Optional. If specified the paying contact must be different from the contact who owns the item and the record's payment status must be CHARGE_TO_ANOTHER_CONTACT or CANCELED_CHARGE_TO_ANOTHER_CONTACT.

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