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
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
fromclientapi_cpanel.models.inline_response200223_result_recordsimportInlineResponse200223ResultRecords# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200223ResultRecords from a JSON stringinline_response200223_result_records_instance=InlineResponse200223ResultRecords.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200223ResultRecords.to_json())
# convert the object into a dictinline_response200223_result_records_dict=inline_response200223_result_records_instance.to_dict()
# create an instance of InlineResponse200223ResultRecords from a dictinline_response200223_result_records_from_dict=InlineResponse200223ResultRecords.from_dict(inline_response200223_result_records_dict)