Spesifikasi status pemesanan
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
BookingStatus adalah status Pemesanan yang ada.
// 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;}
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Informasi yang saya butuhkan tidak ada","missingTheInformationINeed","thumb-down"],["Terlalu rumit/langkahnya terlalu banyak","tooComplicatedTooManySteps","thumb-down"],["Sudah usang","outOfDate","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Masalah kode / contoh","samplesCodeIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 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"]]