Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Una reserva es una cita para utilizar un espacio disponible en el inventario. Contiene las
la información necesaria para identificar y programar la cita.
Definición de Booking
// A booking for an inventory slotmessageBooking{// ID of this booking, which must be unique across all bookings. (required)stringbooking_id=1;// The appointment slot of this booking// (required for CreateBooking and UpdateBooking:modify,// but not UpdateBooking:cancel)Slotslot=2;// Personal information of the user making the appointment (required for// CreateBooking)UserInformationuser_information=3;// Status of the booking (required for CreateBooking and UpdateBooking:cancel,// but not UpdateBooking:modify)BookingStatusstatus=4;// Information about payment transactions that relate to the booking.// (optional)PaymentInformationpayment_information=5;// Information about virtual session related to this booking. (optional)VirtualSessionInfovirtual_session_info=6;// Information about the Offer applied to this booking.//// Required in CreateBookingResponse if an offer_id was set on the// CreateBookingRequest that created the Booking.OfferInfooffer_info=7;}
Definición de OfferInfo
// Information about an Offer applied to a booking.messageOfferInfo{// The ID of the Offer.stringoffer_id=1;}
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Falta la información que necesito","missingTheInformationINeed","thumb-down"],["Muy complicado o demasiados pasos","tooComplicatedTooManySteps","thumb-down"],["Desactualizado","outOfDate","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Problema con las muestras o los códigos","samplesCodeIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2024-09-13 (UTC)"],[[["A Booking is an appointment for an inventory slot and contains information like the appointment details, user information, booking status, and payment details."],["Bookings can optionally include information about virtual sessions and offers applied to the booking, such as the offer ID."]]],[]]