বুকিং স্পেসিফিকেশন
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
বুকিং হলো একটি ইনভেন্টরি স্লটের জন্য একটি অ্যাপয়েন্টমেন্ট। এতে অ্যাপয়েন্টমেন্ট সনাক্তকরণ এবং করার জন্য প্রয়োজনীয় তথ্য থাকে।
// A booking for an inventory slotmessageBooking{optionfeatures.(pb.java).nest_in_file_class=YES;// ID of this booking (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;}
একটি বুকিং তৈরি করুন
বুকিং তৈরি করার দুটি উপায় আছে:
একটি স্লট থেকে সরাসরি একটি বুকিং তৈরি করা যেতে পারে।
লিজের ঐচ্ছিক সহায়তায়, প্রথমে স্লটের জন্য একটি লিজ তৈরি করা হয় এবং তারপর বুকিংয়ে পরিণত করা হয়।
[[["সহজে বোঝা যায়","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"]],["2026-03-26 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],["A `Booking` represents an appointment for an inventory slot and includes a `booking_id`, `slot`, `user_information`, `status`, and optional `payment_information` and `virtual_session_info`. Bookings are created from a `Slot`, or optionally via a `Lease`. Bookings can be updated, meaning they can be rescheduled or canceled. The booking's status, and optionally its prepayment status, can be retrieved via `GetBookingStatus` or `ListBookings`. The method `CreateBooking` is used to create a Booking, and `UpdateBooking` to update it.\n"]]