An object that contains information about the host's public key.
Name | Type | Description | Notes |
---|---|---|---|
algorithm | str | The key's algorithm. | [optional] |
body | str | The host's public key. public key. | [optional] |
md5 | str | The key's MD5 fingerprint. | [optional] |
md5_printable | str | A human-readable version of the key's MD5 fingerprint. | [optional] |
sha256 | str | The key's SHA-256 fingerprint. | [optional] |
sha256_printable | str | A human-readable version of the key's SHA-256 fingerprint. | [optional] |
from clientapi_cpanel.models.inline_response200278_result_data_meta import InlineResponse200278ResultDataMeta
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200278ResultDataMeta from a JSON string
inline_response200278_result_data_meta_instance = InlineResponse200278ResultDataMeta.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200278ResultDataMeta.to_json())
# convert the object into a dict
inline_response200278_result_data_meta_dict = inline_response200278_result_data_meta_instance.to_dict()
# create an instance of InlineResponse200278ResultDataMeta from a dict
inline_response200278_result_data_meta_from_dict = InlineResponse200278ResultDataMeta.from_dict(inline_response200278_result_data_meta_dict)