Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.63 KB

File metadata and controls

35 lines (26 loc) · 1.63 KB

InlineResponse200277ResultDataMeta

An object containing metadata about the host's public key.

Properties

Name Type Description Notes
algorithm str The key's algorithm. [optional]
body str The host's 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 human-readable version of the key's SHA-256 fingerprint. [optional]

Example

from clientapi_cpanel.models.inline_response200277_result_data_meta import InlineResponse200277ResultDataMeta

# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200277ResultDataMeta from a JSON string
inline_response200277_result_data_meta_instance = InlineResponse200277ResultDataMeta.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200277ResultDataMeta.to_json())

# convert the object into a dict
inline_response200277_result_data_meta_dict = inline_response200277_result_data_meta_instance.to_dict()
# create an instance of InlineResponse200277ResultDataMeta from a dict
inline_response200277_result_data_meta_from_dict = InlineResponse200277ResultDataMeta.from_dict(inline_response200277_result_data_meta_dict)

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