Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

SubscriptionInfoResponse

Properties

Name Type Description Notes
info OrderDisplay
emails List[EmailDisplay]

Example

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)

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