We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242c09e commit e47eb26Copy full SHA for e47eb26
uw_mazevo/api.py
@@ -89,3 +89,16 @@ def get_events_with_booking_details(self, booking_ids):
89
event.booking_details.append(BookingDetail.from_json(detail))
90
events.append(event)
91
return events
92
+
93
+ def get_resource_details(self, **kwargs):
94
+ """
95
+ Get Resource Details with specific booking Ids and resource Ids (Optional).
96
97
98
+ url = self.URL.format("getresourcedetails")
99
+ body = kwargs
100
101
+ details = []
102
+ for data in post_resource(url, body):
103
+ details.append(BookingDetail.from_json(data))
104
+ return details
0 commit comments