// 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: 8 enum BookingStatus { // Not specified. BOOKING_STATUS_UNSPECIFIED = 0; // Booking has been confirmed CONFIRMED = 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 appointment NO_SHOW = 5; // User did not show for the appointment in violation of the cancellation // policy. NO_SHOW_PENALIZED = 6; }
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2024-10-14 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2024-10-14 (حسب التوقيت العالمي المتفَّق عليه)"],[[["`BookingStatus` is an enumeration used to represent the current state of a booking."],["Updating a booking's status does not affect its associated payment status, and prepayment statuses should be managed separately using the `PrepaymentStatus` enum."],["Defined booking states include: `CONFIRMED`, `CANCELED`, `NO_SHOW`, and `NO_SHOW_PENALIZED`, along with an unspecified default."],["A `CANCELED` booking allows for potential manual refunds by the merchant."],["`NO_SHOW_PENALIZED` signifies a no-show situation that violates the established cancellation policy."]]],[]]