Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

EmailAddressParam

A single email address parameter used as the body of POST /mail/blocks/delete.

Properties

Name Type Description Notes
email str The email address to delist from all block lists.

Example

from openapi_client.models.email_address_param import EmailAddressParam

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

# convert the object into a dict
email_address_param_dict = email_address_param_instance.to_dict()
# create an instance of EmailAddressParam from a dict
email_address_param_from_dict = EmailAddressParam.from_dict(email_address_param_dict)

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