Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

File metadata and controls

29 lines (20 loc) · 941 Bytes

TemplateSharing

Properties

Name Type Description Notes
teams List[TemplateTeamShare] [optional]

Example

from boldsign.models.template_sharing import TemplateSharing

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

# convert the object into a dict
template_sharing_dict = template_sharing_instance.to_dict()
# create an instance of TemplateSharing from a dict
template_sharing_from_dict = TemplateSharing.from_dict(template_sharing_dict)

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