Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.82 KB

File metadata and controls

31 lines (22 loc) · 1.82 KB

InlineResponse200223ResultRecords

Properties

Name Type Description Notes
current str The domain's DKIM TXT record data contents. Important: This function may fail to preserve whitespace in DKIM records. [optional]
reason str The reason why the DKIM TXT record is not correct, if one exists. Note: This function only returns this value when the `state` value is `PERMFAIL`. [optional]
state str The DKIM TXT record's status: * `VALID` - The DKIM TXT record matches the local server's public key. * `MISMATCH` - The DKIM TXT record does not match the local server's public key. * `PERMFAIL` - Multiple DKIM TXT records for the domain exist or a misconfigured DKIM TXT record exists. [optional]

Example

from clientapi_cpanel.models.inline_response200223_result_records import InlineResponse200223ResultRecords

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

# convert the object into a dict
inline_response200223_result_records_dict = inline_response200223_result_records_instance.to_dict()
# create an instance of InlineResponse200223ResultRecords from a dict
inline_response200223_result_records_from_dict = InlineResponse200223ResultRecords.from_dict(inline_response200223_result_records_dict)

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