You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether the function failed to create the thumbnail file. Note: * The function only returns this value if it doesn't create the thumbnail. * `1` is the only possible value.
[optional]
file
str
The file from which the function generated the thumbnail file. An absolute filepath.
[optional]
reason
str
The reason that the function didn't create the thumbnail file. Note: The function only returns this value if it doesn't create the thumbnail.
[optional]
thumbnail_file
str
The thumbnail file that the function generated. An absolute filepath.
[optional]
Example
fromclientapi_cpanel.models.inline_response200271_result_dataimportInlineResponse200271ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200271ResultData from a JSON stringinline_response200271_result_data_instance=InlineResponse200271ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200271ResultData.to_json())
# convert the object into a dictinline_response200271_result_data_dict=inline_response200271_result_data_instance.to_dict()
# create an instance of InlineResponse200271ResultData from a dictinline_response200271_result_data_from_dict=InlineResponse200271ResultData.from_dict(inline_response200271_result_data_dict)