// 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; }
Especificación del estado de la reserva
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-28 (UTC)