| 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] |
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)