Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

TemplateSenderDetails.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

TemplateSenderDetails

Properties

Name Type Description Notes
name str [optional]
email_address str [optional]
user_id str [optional]

Example

from boldsign.models.template_sender_details import TemplateSenderDetails

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

# convert the object into a dict
template_sender_details_dict = template_sender_details_instance.to_dict()
# create an instance of TemplateSenderDetails from a dict
template_sender_details_from_dict = TemplateSenderDetails.from_dict(template_sender_details_dict)

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