Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 919 Bytes

File metadata and controls

29 lines (20 loc) · 919 Bytes

EmailSentResponse

Properties

Name Type Description Notes
email_id UUID

Example

from ksapi.models.email_sent_response import EmailSentResponse

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

# convert the object into a dict
email_sent_response_dict = email_sent_response_instance.to_dict()
# create an instance of EmailSentResponse from a dict
email_sent_response_from_dict = EmailSentResponse.from_dict(email_sent_response_dict)

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