संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
बुकिंग, इन्वेंट्री स्लॉट के लिए अपॉइंटमेंट होता है. इसमें, अपॉइंटमेंट बुक करने और व्यक्ति की पहचान करने के लिए ज़रूरी जानकारी होती है.
बुकिंग की परिभाषा
// 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;}
OfferInfo की परिभाषा
// Information about an Offer applied to a booking.messageOfferInfo{// The ID of the Offer.stringoffer_id=1;}
[[["समझने में आसान है","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"]],["आखिरी बार 2024-11-26 (UTC) को अपडेट किया गया."],[[["A Booking represents an appointment for an inventory slot and contains details like booking ID, slot, user information, status, and optional payment, virtual session, and offer information."],["Bookings require a unique booking ID, appointment slot, and user information during creation and can optionally include payment, virtual session, and offer details."],["Offer information within a booking includes the offer ID and is included in the CreateBookingResponse if an offer ID was provided in the request."]]],[]]