Skip to content

Commit

Permalink
Generated PR for Release: 38.0.0.20240821
Browse files Browse the repository at this point in the history
  • Loading branch information
autobot committed Aug 20, 2024
1 parent eef03e3 commit 9780c49
Show file tree
Hide file tree
Showing 61 changed files with 120 additions and 368 deletions.
1 change: 0 additions & 1 deletion doc/api/apple-pay.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ body = {
}

result = apple_pay_api.register_domain(body)
print(result)

if result.is_success():
print(result.body)
Expand Down
3 changes: 0 additions & 3 deletions doc/api/bank-accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan

```python
result = bank_accounts_api.list_bank_accounts()
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -76,7 +75,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
v1_bank_account_id = 'v1_bank_account_id8'

result = bank_accounts_api.get_bank_account_by_v1_id(v1_bank_account_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -111,7 +109,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
bank_account_id = 'bank_account_id0'

result = bank_accounts_api.get_bank_account(bank_account_id)
print(result)

if result.is_success():
print(result.body)
Expand Down
11 changes: 0 additions & 11 deletions doc/api/booking-custom-attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan

```python
result = booking_custom_attributes_api.list_booking_custom_attribute_definitions()
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -93,7 +92,6 @@ body = {
}

result = booking_custom_attributes_api.create_booking_custom_attribute_definition(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -133,7 +131,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
key = 'key0'

result = booking_custom_attributes_api.delete_booking_custom_attribute_definition(key)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -172,7 +169,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
key = 'key0'

result = booking_custom_attributes_api.retrieve_booking_custom_attribute_definition(key)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -221,7 +217,6 @@ result = booking_custom_attributes_api.update_booking_custom_attribute_definitio
key,
body
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -272,7 +267,6 @@ body = {
}

result = booking_custom_attributes_api.bulk_delete_booking_custom_attributes(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -323,7 +317,6 @@ body = {
}

result = booking_custom_attributes_api.bulk_upsert_booking_custom_attributes(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -371,7 +364,6 @@ result = booking_custom_attributes_api.list_booking_custom_attributes(
booking_id,
with_definitions=with_definitions
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -418,7 +410,6 @@ result = booking_custom_attributes_api.delete_booking_custom_attribute(
booking_id,
key
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -469,7 +460,6 @@ result = booking_custom_attributes_api.retrieve_booking_custom_attribute(
key,
with_definition=with_definition
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -523,7 +513,6 @@ result = booking_custom_attributes_api.upsert_booking_custom_attribute(
key,
body
)
print(result)

if result.is_success():
print(result.body)
Expand Down
13 changes: 0 additions & 13 deletions doc/api/bookings.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan

```python
result = bookings_api.list_bookings()
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -113,7 +112,6 @@ body = {
}

result = bookings_api.create_booking(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -156,7 +154,6 @@ body = {
}

result = bookings_api.search_availability(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -199,7 +196,6 @@ body = {
}

result = bookings_api.bulk_retrieve_bookings(body)
print(result)

if result.is_success():
print(result.body)
Expand All @@ -224,7 +220,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan

```python
result = bookings_api.retrieve_business_booking_profile()
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -258,7 +253,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan

```python
result = bookings_api.list_location_booking_profiles()
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -292,7 +286,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
location_id = 'location_id4'

result = bookings_api.retrieve_location_booking_profile(location_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -334,7 +327,6 @@ bookable_only = False
result = bookings_api.list_team_member_booking_profiles(
bookable_only=bookable_only
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -374,7 +366,6 @@ body = {
}

result = bookings_api.bulk_retrieve_team_member_booking_profiles(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -408,7 +399,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
team_member_id = 'team_member_id0'

result = bookings_api.retrieve_team_member_booking_profile(team_member_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -445,7 +435,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
booking_id = 'booking_id4'

result = bookings_api.retrieve_booking(booking_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -494,7 +483,6 @@ result = bookings_api.update_booking(
booking_id,
body
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -541,7 +529,6 @@ result = bookings_api.cancel_booking(
booking_id,
body
)
print(result)

if result.is_success():
print(result.body)
Expand Down
4 changes: 0 additions & 4 deletions doc/api/cards.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ include_disabled = False
result = cards_api.list_cards(
include_disabled=include_disabled
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -102,7 +101,6 @@ body = {
}

result = cards_api.create_card(body)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -136,7 +134,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
card_id = 'card_id4'

result = cards_api.retrieve_card(card_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -171,7 +168,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
card_id = 'card_id4'

result = cards_api.disable_card(card_id)
print(result)

if result.is_success():
print(result.body)
Expand Down
3 changes: 0 additions & 3 deletions doc/api/cash-drawers.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ This method returns a `ApiResponse` instance. The `body` property of this instan
location_id = 'location_id4'

result = cash_drawers_api.list_cash_drawer_shifts(location_id)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -93,7 +92,6 @@ result = cash_drawers_api.retrieve_cash_drawer_shift(
location_id,
shift_id
)
print(result)

if result.is_success():
print(result.body)
Expand Down Expand Up @@ -138,7 +136,6 @@ result = cash_drawers_api.list_cash_drawer_shift_events(
location_id,
shift_id
)
print(result)

if result.is_success():
print(result.body)
Expand Down
Loading

0 comments on commit 9780c49

Please sign in to comment.