Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

InlineResponse20045ResultIcon.md

File metadata and controls

32 lines (23 loc) · 1.34 KB

InlineResponse20045ResultIcon

The application's icon information.

Properties

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]

Example

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)

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