Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 862 Bytes

File metadata and controls

31 lines (22 loc) · 862 Bytes

Added

Properties

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

Example

from boldsign.models.added import Added

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

# convert the object into a dict
added_dict = added_instance.to_dict()
# create an instance of Added from a dict
added_from_dict = Added.from_dict(added_dict)

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