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
A message that details either why the DNS lookup failed, or if there is a SPF/DKIM failure. Note: This will be set to `MALFORMED` if there is a syntax issue with this domain's SPF and DKIM records.
[optional]
record
str
The domain's DMARC TXT record.
[optional]
state
str
The domain's DMARC record status. Possible values: * `VALID` - A DMARC policy is set for the domain, along with valid SPF and DKIM records for the domain and IP address. * `MALFORMED` - A DMARC record is set, but it did not pass a syntax check. * `DKIM_SPF_ERROR` - A DMARC record exists; however, both the DKIM and SPF records for this domain did not pass validation. * `DKIM_ERROR` - A DMARC record exists; however, the DKIM record for this domain did not pass validation. * `SPF_ERROR` - A DMARC record exists; however, the SPF record for this domain did not pass validation. * `MISSING` - No DMARC record exists for the domain at the DMARC subdomain location. * `DNS_ERROR` - A DNS error prevented validation of the DMARC record.
[optional]
subdomain
str
The domain that the function used to check the DMARC record. This will be the value of the `domain` parameter with a `_dmarc` prefix.
[optional]
suggested
str
The recommended DMARC policy.
[optional]
Example
fromclientapi_cpanel.models.inline_response200224_result_dataimportInlineResponse200224ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200224ResultData from a JSON stringinline_response200224_result_data_instance=InlineResponse200224ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200224ResultData.to_json())
# convert the object into a dictinline_response200224_result_data_dict=inline_response200224_result_data_instance.to_dict()
# create an instance of InlineResponse200224ResultData from a dictinline_response200224_result_data_from_dict=InlineResponse200224ResultData.from_dict(inline_response200224_result_data_dict)