Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

File metadata and controls

30 lines (21 loc) · 1.1 KB

TemplateSharedTemplateDetail

Properties

Name Type Description Notes
team_id str [optional]
access_type str [optional]

Example

from boldsign.models.template_shared_template_detail import TemplateSharedTemplateDetail

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

# convert the object into a dict
template_shared_template_detail_dict = template_shared_template_detail_instance.to_dict()
# create an instance of TemplateSharedTemplateDetail from a dict
template_shared_template_detail_from_dict = TemplateSharedTemplateDetail.from_dict(template_shared_template_detail_dict)

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