| Name | Type | Description | Notes |
|---|---|---|---|
| info | OrderDisplay | ||
| emails | List[EmailDisplay] |
from workplace_client.models.subscription_info_response import SubscriptionInfoResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriptionInfoResponse from a JSON string
subscription_info_response_instance = SubscriptionInfoResponse.from_json(json)
# print the JSON string representation of the object
print(SubscriptionInfoResponse.to_json())
# convert the object into a dict
subscription_info_response_dict = subscription_info_response_instance.to_dict()
# create an instance of SubscriptionInfoResponse from a dict
subscription_info_response_from_dict = SubscriptionInfoResponse.from_dict(subscription_info_response_dict)