Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

EditSenderIdentityRequest

Properties

Name Type Description Notes
name str [optional]
notification_settings NotificationSettings [optional]
redirect_url str [optional]
meta_data Dict[str, Optional[str]] [optional]
locale str [optional]

Example

from boldsign.models.edit_sender_identity_request import EditSenderIdentityRequest

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

# convert the object into a dict
edit_sender_identity_request_dict = edit_sender_identity_request_instance.to_dict()
# create an instance of EditSenderIdentityRequest from a dict
edit_sender_identity_request_from_dict = EditSenderIdentityRequest.from_dict(edit_sender_identity_request_dict)

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