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_article_item_gateway_commandimportAddArticleItemGatewayCommand# TODO update the JSON string belowjson="{}"# create an instance of AddArticleItemGatewayCommand from a JSON stringadd_article_item_gateway_command_instance=AddArticleItemGatewayCommand.from_json(json)
# print the JSON string representation of the objectprint(AddArticleItemGatewayCommand.to_json())
# convert the object into a dictadd_article_item_gateway_command_dict=add_article_item_gateway_command_instance.to_dict()
# create an instance of AddArticleItemGatewayCommand from a dictadd_article_item_gateway_command_from_dict=AddArticleItemGatewayCommand.from_dict(add_article_item_gateway_command_dict)