Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

File metadata and controls

35 lines (26 loc) · 1.13 KB

AppsApp

Properties

Name Type Description Notes
avatar str [optional]
display str [optional]
divar_identification_key str [optional]
service_tags List[AppsServiceTag] [optional]
service_type AppsServiceType [optional]
slug str [optional]
status AppsAppStatus [optional]

Example

from kenar_api_client.models.apps_app import AppsApp

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

# convert the object into a dict
apps_app_dict = apps_app_instance.to_dict()
# create an instance of AppsApp from a dict
apps_app_from_dict = AppsApp.from_dict(apps_app_dict)

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