Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.21 KB

File metadata and controls

36 lines (27 loc) · 1.21 KB

ChangeRecipient

Properties

Name Type Description Notes
new_signer_name str
reason str
order int [optional]
new_signer_email str [optional]
old_signer_email str [optional]
on_behalf_of str [optional]
phone_number PhoneNumber [optional]
old_phone_number PhoneNumber [optional]

Example

from boldsign.models.change_recipient import ChangeRecipient

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

# convert the object into a dict
change_recipient_dict = change_recipient_instance.to_dict()
# create an instance of ChangeRecipient from a dict
change_recipient_from_dict = ChangeRecipient.from_dict(change_recipient_dict)

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