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
fromferatel_client.models.add_tour_item_gateway_commandimportAddTourItemGatewayCommand# TODO update the JSON string belowjson="{}"# create an instance of AddTourItemGatewayCommand from a JSON stringadd_tour_item_gateway_command_instance=AddTourItemGatewayCommand.from_json(json)
# print the JSON string representation of the objectprint(AddTourItemGatewayCommand.to_json())
# convert the object into a dictadd_tour_item_gateway_command_dict=add_tour_item_gateway_command_instance.to_dict()
# create an instance of AddTourItemGatewayCommand from a dictadd_tour_item_gateway_command_from_dict=AddTourItemGatewayCommand.from_dict(add_tour_item_gateway_command_dict)