संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
इस तरीके से, आने वाले समय में किसी भी कारोबारी या कंपनी के उपयोगकर्ता को बुकिंग के बारे में जानकारी मिलती है. यह तरीका
पिछली बुकिंग या रद्द की गई बुकिंग वापस नहीं लौटाना चाहिए.
अनुरोध करें
ListBookingsRequest
रिटर्न वैल्यू
ListBookingsResponse
// Request to list all bookings for a user
message ListBookingsRequest {
// ID of the user (required)
string user_id = 1;
}
// Response for the ListBookings RPC with all bookings for the requested user.
message ListBookingsResponse {
// All bookings of the user (required)
repeated Booking bookings = 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-08-29 (UTC) को अपडेट किया गया."],[[["This method fetches upcoming bookings for a specific user at any merchant, excluding past or cancelled bookings."],["The request requires the user's ID (`user_id`) to retrieve their booking information."],["The response provides a list of all active bookings (`bookings`) associated with the specified user."]]],[]]