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
frominstana_client.models.multiple_scripts_configurationimportMultipleScriptsConfiguration# TODO update the JSON string belowjson="{}"# create an instance of MultipleScriptsConfiguration from a JSON stringmultiple_scripts_configuration_instance=MultipleScriptsConfiguration.from_json(json)
# print the JSON string representation of the objectprint(MultipleScriptsConfiguration.to_json())
# convert the object into a dictmultiple_scripts_configuration_dict=multiple_scripts_configuration_instance.to_dict()
# create an instance of MultipleScriptsConfiguration from a dictmultiple_scripts_configuration_from_dict=MultipleScriptsConfiguration.from_dict(multiple_scripts_configuration_dict)