@@ -63,7 +63,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
6363
6464``` python
6565result = bookings_api.list_bookings()
66- print (result)
6766
6867if result.is_success():
6968 print (result.body)
@@ -113,7 +112,6 @@ body = {
113112}
114113
115114result = bookings_api.create_booking(body)
116- print (result)
117115
118116if result.is_success():
119117 print (result.body)
@@ -156,7 +154,6 @@ body = {
156154}
157155
158156result = bookings_api.search_availability(body)
159- print (result)
160157
161158if result.is_success():
162159 print (result.body)
@@ -199,7 +196,6 @@ body = {
199196}
200197
201198result = bookings_api.bulk_retrieve_bookings(body)
202- print (result)
203199
204200if result.is_success():
205201 print (result.body)
@@ -224,7 +220,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
224220
225221``` python
226222result = bookings_api.retrieve_business_booking_profile()
227- print (result)
228223
229224if result.is_success():
230225 print (result.body)
@@ -258,7 +253,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
258253
259254``` python
260255result = bookings_api.list_location_booking_profiles()
261- print (result)
262256
263257if result.is_success():
264258 print (result.body)
@@ -292,7 +286,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
292286location_id = ' location_id4'
293287
294288result = bookings_api.retrieve_location_booking_profile(location_id)
295- print (result)
296289
297290if result.is_success():
298291 print (result.body)
@@ -334,7 +327,6 @@ bookable_only = False
334327result = bookings_api.list_team_member_booking_profiles(
335328 bookable_only = bookable_only
336329)
337- print (result)
338330
339331if result.is_success():
340332 print (result.body)
@@ -374,7 +366,6 @@ body = {
374366}
375367
376368result = bookings_api.bulk_retrieve_team_member_booking_profiles(body)
377- print (result)
378369
379370if result.is_success():
380371 print (result.body)
@@ -408,7 +399,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
408399team_member_id = ' team_member_id0'
409400
410401result = bookings_api.retrieve_team_member_booking_profile(team_member_id)
411- print (result)
412402
413403if result.is_success():
414404 print (result.body)
@@ -445,7 +435,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
445435booking_id = ' booking_id4'
446436
447437result = bookings_api.retrieve_booking(booking_id)
448- print (result)
449438
450439if result.is_success():
451440 print (result.body)
@@ -494,7 +483,6 @@ result = bookings_api.update_booking(
494483 booking_id,
495484 body
496485)
497- print (result)
498486
499487if result.is_success():
500488 print (result.body)
@@ -541,7 +529,6 @@ result = bookings_api.cancel_booking(
541529 booking_id,
542530 body
543531)
544- print (result)
545532
546533if result.is_success():
547534 print (result.body)
0 commit comments