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
Origin ID for the transaction type (e.g., fee ID, tax ID)
[optional]
Example
fromcloudbeds_accounting.models.routing_rule_transaction_type_responseimportRoutingRuleTransactionTypeResponse# TODO update the JSON string belowjson="{}"# create an instance of RoutingRuleTransactionTypeResponse from a JSON stringrouting_rule_transaction_type_response_instance=RoutingRuleTransactionTypeResponse.from_json(json)
# print the JSON string representation of the objectprint(RoutingRuleTransactionTypeResponse.to_json())
# convert the object into a dictrouting_rule_transaction_type_response_dict=routing_rule_transaction_type_response_instance.to_dict()
# create an instance of RoutingRuleTransactionTypeResponse from a dictrouting_rule_transaction_type_response_from_dict=RoutingRuleTransactionTypeResponse.from_dict(routing_rule_transaction_type_response_dict)