מפרט של סטטוס ההזמנה
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
BookingStatus הוא הסטטוס של הזמנה קיימת.
// 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;}
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 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"]]