Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 2.25 KB

File metadata and controls

31 lines (22 loc) · 2.25 KB

InlineResponse200226ResultRecords

Properties

Name Type Description Notes
current str The SPF record's contents. [optional]
reason str 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

from clientapi_cpanel.models.inline_response200226_result_records import InlineResponse200226ResultRecords

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

# convert the object into a dict
inline_response200226_result_records_dict = inline_response200226_result_records_instance.to_dict()
# create an instance of InlineResponse200226ResultRecords from a dict
inline_response200226_result_records_from_dict = InlineResponse200226ResultRecords.from_dict(inline_response200226_result_records_dict)

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