Quy cách trạng thái đặt phòng
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
BookingStatus là trạng thái của một Booking hiện có.
// 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: 6enumBookingStatus{optionfeatures.(pb.java).nest_in_file_class=YES;// Not specified.BOOKING_STATUS_UNSPECIFIED=0;// Booking has been confirmedCONFIRMED=1;// ...CANCELED=3;// User did not show for the appointmentNO_SHOW=4;// User did not show for the appointment in violation of the cancellation// policy.NO_SHOW_PENALIZED=5;}
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2026-03-26 UTC."],[],["BookingStatus, representing the status of an existing booking, includes several states. These states are `CONFIRMED`, indicating a confirmed booking; `CANCELED`, meaning the booking was canceled; `NO_SHOW`, where the user missed the appointment; and `NO_SHOW_PENALIZED`, where the user missed the appointment and violated the cancellation policy. Importantly, updating the booking status does not impact associated payment statuses. Prepayment status changes should use the PrepaymentStatus enum instead.\n"]]