Skip to main content

UpdateHotelBookingStatusInput

Defines the input for updating the status of a hotel booking.

input UpdateHotelBookingStatusInput {
contactId: ID!
eventId: ID!
hotelBookingId: ID!
payingContactId: ID
paymentStatus: PaymentStatusInput!
}

Fields

UpdateHotelBookingStatusInput.contactId ● ID! non-null scalar

The identifier of the contact the hotel booking is associated with.

UpdateHotelBookingStatusInput.eventId ● ID! non-null scalar

The identifier of the event the hotel booking is associated with.

UpdateHotelBookingStatusInput.hotelBookingId ● ID! non-null scalar

The identifier of the hotel booking.

UpdateHotelBookingStatusInput.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.

UpdateHotelBookingStatusInput.paymentStatus ● PaymentStatusInput! non-null enum

The new payment status for the hotel booking.

Member Of

updateHotelBookingStatus mutation