با مجموعهها، منظم بمانید
ذخیره و دستهبندی محتوا براساس اولویتهای شما.
درخواست کنید
ایجاد درخواست رزرو
ارزش برگشتی
CreateBookingResponse
عوارض جانبی
CreateBooking یک اجاره نامه را مصرف می کند و آن را برای هر گونه رزرو بعدی نامعتبر می کند.
کدهای خطای متعارف gRPC
INVALID_ARGUMENT اگر اطلاعات مشتری ارائه شده نامعتبر باشد، به عنوان مثال به دلیل از دست دادن فیلدها
اگر شناسه اجاره ارائه شده معتبر نباشد، NOT_FOUND .
RESOURCE_EXHAUSTED (اگر اسلات از زمان ایجاد اجاره نامه در دسترس نباشد، به عنوان مثال به دلیل یک رزرو متناقض)
ALREADY_EXISTS (اگر مشتری قبلاً برای این اسلات رزرو کرده باشد)
// Request to create a [ext.maps.booking.partner.v0.Booking] for an inventory// slot. Consumes the lease.messageCreateBookingRequest{// The lease that is being confirmed to make this bookingLeaseReferencelease_ref=1;// Personal information of the client making the appointmentClientInformationclient_information=2;// Information about payments. If the booking request does not succeed,// payment authorizations are automatically canceled.PaymentInformationpayment_information=3;// The parameters to be used if the payment is processed by the partner// (i.e. payment_information.payment_processed_by is equal to// PROCESSED_BY_PARTNER).PaymentProcessingParameterspayment_processing_parameters=4;}// Response with the created [ext.maps.booking.partner.v0.Booking] for an// inventory slotmessageCreateBookingResponse{// The created bookingBookingbooking=1;// The updated user payment option used in this booking.// If a new payment option was purchased to pay for the booking, this should// be a newly created user payment option.// If an already purchased user payment option was used for this booking,// this should reflect an updated version of that user payment option.UserPaymentOptionuser_payment_option=2;}
تاریخ آخرین بهروزرسانی 2024-11-26 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","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 بهوقت ساعت هماهنگ جهانی."],[[["The `CreateBooking` API creates a booking for an inventory slot using a provided lease, client, payment, and payment processing information."],["If successful, it returns the created booking and potentially updated user payment information, consuming the initial lease."],["Potential errors include invalid client data, invalid lease ID, slot unavailability due to conflict or if the client already has a booking for the given slot."],["`CreateBookingRequest` contains lease, client, payment, and processing details, while `CreateBookingResponse` returns the booking and user payment information."]]],["The `CreateBookingRequest` message initiates a booking, consuming a lease and requiring `LeaseReference`, `ClientInformation`, and `PaymentInformation`. A successful request returns a `CreateBookingResponse` containing the `Booking` details and potentially an updated `UserPaymentOption`. Side effects include lease invalidation. Errors include `INVALID_ARGUMENT` (invalid client info), `NOT_FOUND` (invalid lease), `RESOURCE_EXHAUSTED` (slot unavailable), and `ALREADY_EXISTS` (existing booking). The request also includes optional `PaymentProcessingParameters` for partner-processed payments.\n"]]