Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

RecipientChangeLog

Properties

Name Type Description Notes
added List[Added] [optional]
removed List[Removed] [optional]

Example

from boldsign.models.recipient_change_log import RecipientChangeLog

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

# convert the object into a dict
recipient_change_log_dict = recipient_change_log_instance.to_dict()
# create an instance of RecipientChangeLog from a dict
recipient_change_log_from_dict = RecipientChangeLog.from_dict(recipient_change_log_dict)

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