| Name |
Type |
Description |
Notes |
| domain |
str |
|
|
| plan_id |
int |
|
|
from workplace_client.models.sub_scription_info import SubScriptionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of SubScriptionInfo from a JSON string
sub_scription_info_instance = SubScriptionInfo.from_json(json)
# print the JSON string representation of the object
print(SubScriptionInfo.to_json())
# convert the object into a dict
sub_scription_info_dict = sub_scription_info_instance.to_dict()
# create an instance of SubScriptionInfo from a dict
sub_scription_info_from_dict = SubScriptionInfo.from_dict(sub_scription_info_dict)
[Back to Model list] [Back to API list] [Back to README]