Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.11 KB

File metadata and controls

36 lines (27 loc) · 1.11 KB

EmailSubscriber

Properties

Name Type Description Notes
first_name object
last_name object
email_address object
id AmenityId
created_at object
updated_at object
is_active object
merchant_id str

Example

from wallet.models.email_subscriber import EmailSubscriber

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

# convert the object into a dict
email_subscriber_dict = email_subscriber_instance.to_dict()
# create an instance of EmailSubscriber from a dict
email_subscriber_form_dict = email_subscriber.from_dict(email_subscriber_dict)

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