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
Returns the list of actions available for the transaction
[optional]
Example
fromcloudbeds_accounting.models.extended_transaction_responseimportExtendedTransactionResponse# TODO update the JSON string belowjson="{}"# create an instance of ExtendedTransactionResponse from a JSON stringextended_transaction_response_instance=ExtendedTransactionResponse.from_json(json)
# print the JSON string representation of the objectprint(ExtendedTransactionResponse.to_json())
# convert the object into a dictextended_transaction_response_dict=extended_transaction_response_instance.to_dict()
# create an instance of ExtendedTransactionResponse from a dictextended_transaction_response_from_dict=ExtendedTransactionResponse.from_dict(extended_transaction_response_dict)