The application's icon information.
Name | Type | Description | Notes |
---|---|---|---|
height | int | The application's icon's height, in pixels. | [optional] |
url | str | The file path or URL location of the application's icon. | [optional] |
width | int | The application's icon's width, in pixels. | [optional] |
from clientapi_cpanel.models.inline_response20045_result_icon import InlineResponse20045ResultIcon
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse20045ResultIcon from a JSON string
inline_response20045_result_icon_instance = InlineResponse20045ResultIcon.from_json(json)
# print the JSON string representation of the object
print(InlineResponse20045ResultIcon.to_json())
# convert the object into a dict
inline_response20045_result_icon_dict = inline_response20045_result_icon_instance.to_dict()
# create an instance of InlineResponse20045ResultIcon from a dict
inline_response20045_result_icon_from_dict = InlineResponse20045ResultIcon.from_dict(inline_response20045_result_icon_dict)