Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.68 KB

File metadata and controls

34 lines (25 loc) · 1.68 KB

InlineResponse20094ResultData

Properties

Name Type Description Notes
domain str The security key's domain. [optional]
key_content str The content of the key, which includes the algorithm. [optional]
key_id int The security key's ID. [optional]
key_tag int The security key's internal identifier. [optional]
key_type str The security key's signing type. * `CSK` - Combined Signing Key. * `KSK` - Key Signing Key. * `ZSK` - Zone Signing Key. [optional]
success int Whether the function succeeded. * `1` - The function succeeded. * `0` - The function failed. [optional]

Example

from clientapi_cpanel.models.inline_response20094_result_data import InlineResponse20094ResultData

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

# convert the object into a dict
inline_response20094_result_data_dict = inline_response20094_result_data_instance.to_dict()
# create an instance of InlineResponse20094ResultData from a dict
inline_response20094_result_data_from_dict = InlineResponse20094ResultData.from_dict(inline_response20094_result_data_dict)

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