সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি বুকিং হল একটি ইনভেন্টরি স্লটের জন্য একটি অ্যাপয়েন্টমেন্ট। এটি সনাক্তকরণ এবং অ্যাপয়েন্টমেন্ট করার জন্য প্রয়োজনীয় তথ্য রয়েছে।
বুকিং সংজ্ঞা
// A booking for an inventory slot
message Booking {
// ID of this booking, which must be unique across all bookings. (required)
string booking_id = 1;
// The appointment slot of this booking
// (required for CreateBooking and UpdateBooking:modify,
// but not UpdateBooking:cancel)
Slot slot = 2;
// Personal information of the user making the appointment (required for
// CreateBooking)
UserInformation user_information = 3;
// Status of the booking (required for CreateBooking and UpdateBooking:cancel,
// but not UpdateBooking:modify)
BookingStatus status = 4;
// Information about payment transactions that relate to the booking.
// (optional)
PaymentInformation payment_information = 5;
// Information about virtual session related to this booking. (optional)
VirtualSessionInfo virtual_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.
OfferInfo offer_info = 7;
}
অফার ইনফো সংজ্ঞা
// Information about an Offer applied to a booking.
message OfferInfo {
// The ID of the Offer.
string offer_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-10-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["A Booking represents an appointment for an inventory slot and contains details like booking ID, slot information, user details, and booking status."],["It includes optional information such as payment details, virtual session details, and details about any applied Offer."],["An OfferInfo message provides details about an Offer applied to a booking, primarily the Offer ID."],["Bookings must have a unique booking ID and include appointment slot details, while user information is required only during booking creation."],["Booking status is essential for creation and cancellation, while payment, virtual session, and offer information are optional."]]],[]]