| Name |
Type |
Description |
Notes |
| parent_folder_id |
str |
|
|
from docspring.models.move_template_data import MoveTemplateData
# TODO update the JSON string below
json = "{}"
# create an instance of MoveTemplateData from a JSON string
move_template_data_instance = MoveTemplateData.from_json(json)
# print the JSON string representation of the object
print(MoveTemplateData.to_json())
# convert the object into a dict
move_template_data_dict = move_template_data_instance.to_dict()
# create an instance of MoveTemplateData from a dict
move_template_data_from_dict = MoveTemplateData.from_dict(move_template_data_dict)
[Back to Model list] [Back to API list] [Back to README]