बुकिंग की स्थिति की जानकारी
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: 6
enum BookingStatus {
// Not specified.
BOOKING_STATUS_UNSPECIFIED = 0;
// Booking has been confirmed
CONFIRMED = 1;
// ...
CANCELED = 3;
// User did not show for the appointment
NO_SHOW = 4;
// User did not show for the appointment in violation of the cancellation
// policy.
NO_SHOW_PENALIZED = 5;
}
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-11-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-11-26 (UTC) को अपडेट किया गया."],[[["`BookingStatus` is an enumeration representing the current state of a booking, such as confirmed, canceled, or no-show."],["This status is independent of payment or prepayment status, which are handled separately."],["Specific `BookingStatus` values indicate whether a no-show violated cancellation policies (`NO_SHOW_PENALIZED`)."]]],[]]