You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 29, 2024. It is now read-only.
"subtitle": "These Deluxe Rooms let you relax as you admire a beautiful view of the pool. Stay connected as you enjoy our free WiFi and watch movies with our 32-inch LCD TV and DVD player.",
"subtitle": "Large bedroom with exquisitely embroidered queen or king size bed. Elegant, luxury decor with rich fabrics. Separate sitting room with sofa and armchairs.",
"subtitle": "The Club Suite is the ideal choice for a comfortable and lavish stay for both small families and business travelers alike. The gently soothing views and the calming ambiance of the suite add to an enriching experience for our guests.",
dispatcher.utter_message("Your booking details are here")
194
+
return []
195
+
classBookRoomsDetails(Action):
196
+
defname(self):
197
+
"""name of the custom action"""
198
+
return"action_book_rooms_details"
199
+
200
+
defrun(self,dispatcher,tracker,domain):
201
+
check_in=tracker.get_slot("check_in")
202
+
check_out=tracker.get_slot("check_out")
203
+
adults=tracker.get_slot("adults")
204
+
child=tracker.get_slot("child")
205
+
room=tracker.get_slot("room")
206
+
name=tracker.get_slot("name")
207
+
phno=tracker.get_slot("phno")
208
+
email=tracker.get_slot("email")
209
+
message="BOOKING DETAILS:"+"\n\n"+"Checkin Date:"+check_in+"\n"+"Checkout Date:"+check_out+"\n"+"No. of Adults:"+adults+"\n"+"No. of Children:"+child+"\n"+"No.of Rooms:"+room+"\n"+"Phone Number:"+phno+"\n"+"Email:"+email
0 commit comments