Rezervasyon durumu spesifikasyonu
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
BookingStatus, mevcut bir rezervasyonun durumudur.
// 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;}
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 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"]]