Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Bu yöntem, herhangi bir satıcıda bir kullanıcının gelecekteki rezervasyonlarını döndürür. Bu yöntem, geçmiş rezervasyonları veya iptal edilen rezervasyonları döndürmemelidir.
İstek
ListBookingsRequest
Döndürülen değer
ListBookingsResponse
// Request to list all bookings for a usermessageListBookingsRequest{// ID of the user (required)stringuser_id=1;}// Response for the ListBookings RPC with all bookings for the requested user.messageListBookingsResponse{// All bookings of the user (required)repeatedBookingbookings=1;}
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-11-26 UTC."],[[["This service retrieves a list of a user's upcoming bookings across all merchants."],["Past and cancelled bookings are excluded from the results."],["The request requires a user ID to identify the user for which the bookings are being listed."],["The response returns a list of Booking objects, representing the user's upcoming reservations."]]],["The `ListBookingsRequest` retrieves a user's future bookings, excluding past or cancelled ones, by utilizing a required `user_id`. The `ListBookingsResponse` returns a list of `Booking` objects, representing all future bookings associated with the specified user. The response contains a repeated `bookings` field, which is mandatory.\n"]]