Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1005 Bytes

File metadata and controls

30 lines (21 loc) · 1005 Bytes

TemplateGroupSigner

Properties

Name Type Description Notes
signer_email str [optional]
signer_name str [optional]

Example

from boldsign.models.template_group_signer import TemplateGroupSigner

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

# convert the object into a dict
template_group_signer_dict = template_group_signer_instance.to_dict()
# create an instance of TemplateGroupSigner from a dict
template_group_signer_from_dict = TemplateGroupSigner.from_dict(template_group_signer_dict)

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