Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 992 Bytes

CopyTemplateOptions.md

File metadata and controls

30 lines (21 loc) · 992 Bytes

CopyTemplateOptions

Properties

Name Type Description Notes
name str [optional]
parent_folder_id str

Example

from docspring.models.copy_template_options import CopyTemplateOptions

# TODO update the JSON string below
json = "{}"
# create an instance of CopyTemplateOptions from a JSON string
copy_template_options_instance = CopyTemplateOptions.from_json(json)
# print the JSON string representation of the object
print(CopyTemplateOptions.to_json())

# convert the object into a dict
copy_template_options_dict = copy_template_options_instance.to_dict()
# create an instance of CopyTemplateOptions from a dict
copy_template_options_from_dict = CopyTemplateOptions.from_dict(copy_template_options_dict)

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