Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 899 Bytes

File metadata and controls

28 lines (20 loc) · 899 Bytes

EmailResponse

Properties

Name Type Description Notes
message_id str A unique identifier for the message sent [optional]

Example

from bsg_api.models.email_response import EmailResponse

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

# convert the object into a dict
email_response_dict = email_response_instance.to_dict()
# create an instance of EmailResponse from a dict
email_response_from_dict = EmailResponse.from_dict(email_response_dict)

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