এই পদ্ধতিটি যেকোন মার্চেন্টে ব্যবহারকারীর জন্য ভবিষ্যতের বুকিং ফেরত দেয়। এই পদ্ধতিটি অতীতের বুকিং বা বাতিল করা বুকিং ফেরত দেওয়া উচিত নয়।
অনুরোধ
লিস্টবুকিং রিকোয়েস্ট
রিটার্ন মান
তালিকাবুকিং প্রতিক্রিয়া
// 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; }