Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 784 Bytes

File metadata and controls

29 lines (20 loc) · 784 Bytes

Script

Properties

Name Type Description Notes
script str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]