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 reason why the SPF record is not correct, if one exists. Note: If no errors exist, the function does not return this value.
[optional]
state
str
The SPF record's status: * `PASS` - The `SPF` record confirms that the `ip_address` value is a valid sender. * `NEUTRAL` - The current `SPF` record configuration does not determine the `ip_address` value's validity. * `FAIL` - The `SPF` record states that the `ip_address` value is not a valid sender. * `SOFTFAIL` - The `SPF` record states that the `ip_address` value is not a valid sender, but does not `FAIL` state it. * `TEMPERROR` - The `SPF` record check resulted in a failure. For example, a network failure. * `PERMERROR` - The domain's `SPF` records are incorrect and require manual correction. Note: These values correspond with RFC7208 section 2.6.
[optional]
Example
fromclientapi_cpanel.models.inline_response200226_result_recordsimportInlineResponse200226ResultRecords# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200226ResultRecords from a JSON stringinline_response200226_result_records_instance=InlineResponse200226ResultRecords.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200226ResultRecords.to_json())
# convert the object into a dictinline_response200226_result_records_dict=inline_response200226_result_records_instance.to_dict()
# create an instance of InlineResponse200226ResultRecords from a dictinline_response200226_result_records_from_dict=InlineResponse200226ResultRecords.from_dict(inline_response200226_result_records_dict)