Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 2.35 KB

InlineResponse200226ResultData.md

File metadata and controls

35 lines (26 loc) · 2.35 KB

InlineResponse200226ResultData

Properties

Name Type Description Notes
domain str The queried domain. [optional]
error str A message that details the reason why the DNS lookup failed. Note: The function only returns this value when the `state` return is the `ERROR` value. [optional]
expected str The SPF record for the domain in the DNS. [optional]
ip_address str The domain's IP address. [optional]
ip_version int The IP address version. * `4` * `6` [optional]
records List[InlineResponse200226ResultRecords] The SPF records of the domain's DNS. [optional]
state str The SPF record's status: * `VALID` - A single `SPF TXT` record exists in the domain's DNS with the correct `ip_address` value or redirect mechanism. * `MISMATCHED` - An `SPF TXT` record exists for the domain that does not match the `ip_address` value. * `MULTIPLE` - Multiple `SPF TXT` records exist in the domain's DNS. * `MISSING` - No `SPF TXT` record exists for the domain's DNS. * `ERROR` - The record's DNS lookup failed. The function returns the reason in the error return. [optional]

Example

from clientapi_cpanel.models.inline_response200226_result_data import InlineResponse200226ResultData

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

# convert the object into a dict
inline_response200226_result_data_dict = inline_response200226_result_data_instance.to_dict()
# create an instance of InlineResponse200226ResultData from a dict
inline_response200226_result_data_from_dict = InlineResponse200226ResultData.from_dict(inline_response200226_result_data_dict)

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