Booking status specification
Stay organized with collections
Save and categorize content based on your preferences.
Page Summary
Updating a booking's status does not affect the status of the associated payment.
There are different statuses to indicate the state of a booking, including confirmed, canceled, no-show, and penalized no-show.
Prepayment status updates should be handled separately using the PrepaymentStatus enum.
// Status of a booking.//// Updating booking status does not change the status of the associated payment.// Prepayment status updates should be done using the PrepaymentStatus enum.//// nextID: 8enumBookingStatus{optionfeatures.(pb.java).nest_in_file_class=YES;// Not specified.BOOKING_STATUS_UNSPECIFIED=0;// Booking has been confirmedCONFIRMED=1;// ...// Booking has been canceled on behalf of the user.// The merchant can still trigger a manual refund.CANCELED=4;// User did not show for the appointmentNO_SHOW=5;// User did not show for the appointment in violation of the cancellation// policy.NO_SHOW_PENALIZED=6;}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-04-01 UTC."],[],["The `BookingStatus` enum defines the state of a booking, independent of payment status. Key statuses include `CONFIRMED`, `CANCELED` (user-initiated, allowing manual refunds), `NO_SHOW` (user missed the appointment), and `NO_SHOW_PENALIZED` (missed appointment violating cancellation policy). Prepayment status changes are handled separately. Updating a booking status doesn't modify the associated payment status. `BOOKING_STATUS_UNSPECIFIED` indicates an undefined state.\n"]]