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
When the key will expire, in Unix time format. Note: If the key does not expire, this will be an empty string.
[optional]
id
str
The key's ID.
[optional]
type
str
The type of key. Note: This will always be "pub" because we are listing public keys.
[optional]
user_id
str
The user ID of the key which consists of the following space-separated values: * The username. * The key's comment in parentheses. * The key's email address in angle brackets (<>).
[optional]
Example
fromclientapi_cpanel.models.inline_response200268_result_dataimportInlineResponse200268ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200268ResultData from a JSON stringinline_response200268_result_data_instance=InlineResponse200268ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200268ResultData.to_json())
# convert the object into a dictinline_response200268_result_data_dict=inline_response200268_result_data_instance.to_dict()
# create an instance of InlineResponse200268ResultData from a dictinline_response200268_result_data_from_dict=InlineResponse200268ResultData.from_dict(inline_response200268_result_data_dict)