Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

SenderIdentityList.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

SenderIdentityList

Properties

Name Type Description Notes
result List[SenderIdentityViewModel] [optional]
page_details PageDetails [optional]

Example

from boldsign.models.sender_identity_list import SenderIdentityList

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

# convert the object into a dict
sender_identity_list_dict = sender_identity_list_instance.to_dict()
# create an instance of SenderIdentityList from a dict
sender_identity_list_from_dict = SenderIdentityList.from_dict(sender_identity_list_dict)

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