Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

AccountSubscription.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

AccountSubscription

Properties

Name Type Description Notes
email str [optional]
first_name str [optional]
last_name str [optional]
order_id int [optional]
sku str [optional]

Example

from wordlift_client.models.account_subscription import AccountSubscription

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

# convert the object into a dict
account_subscription_dict = account_subscription_instance.to_dict()
# create an instance of AccountSubscription from a dict
account_subscription_from_dict = AccountSubscription.from_dict(account_subscription_dict)

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