| Name | Type | Description | Notes |
|---|---|---|---|
| script | str | [optional] |
from ibm_gdsc_sdk_saas.models.script import Script
# TODO update the JSON string below
json = "{}"
# create an instance of Script from a JSON string
script_instance = Script.from_json(json)
# print the JSON string representation of the object
print(Script.to_json())
# convert the object into a dict
script_dict = script_instance.to_dict()
# create an instance of Script from a dict
script_from_dict = Script.from_dict(script_dict)