Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 3.49 KB

InlineResponse200423ResultData.md

File metadata and controls

35 lines (26 loc) · 3.49 KB

InlineResponse200423ResultData

Properties

Name Type Description Notes
cert_match_method str The method that the system used to match the certificate with the mail service. * `none` — No domain matches the certificate. * `exact` — The domain exactly matches the certificate. * `exact-wildcard` — The domain exactly matches the certificate. * `mail-wildcard` — The `mail` subdomain of the domain matches the domain of the wildcard certificate. * `www-wildcard` — The `www` subdomain of the domain matches the domain of the wildcard certificate. * `hostname-wildcard` — The hostname's domain matches the domain of the wildcard certificate. * `hostname` — The hostname matches the domain of the certificate. * `localdomain_on_cert-mail-wildcard` — A `mail` subdomain of a domain on the server that matches the certificate. * `localdomain_on_cert-www-wildcard` — A `www` subdomain of a domain on the server matches the certificate. * `localdomain_on_cert` — A domain on the server matches the certificate. [optional]
cert_valid_not_after int The certificate's expiration date. [optional]
is_currently_valid int Whether the certificate is currently valid. * `1` — Valid. * `0` — Invalid. Note: If the certificate is valid, the following statements are true: * The certificate is not self-signed (the `ssldomain_matches_cert` value is `1`). * The certificate matches the SSL domain (the `ssldomain_matches_cert` value is `1`). * The certificate is within its validity period (the `cert_valid_not_after` value is less than the current time and date). [optional]
is_self_signed int Whether the certificate is self-signed. * `1` — Self-signed. * `0` — Not self-signed. Note: If the `cert_match_method` value is `none`, you should ignore this return's value. [optional]
is_wild_card int Whether the certificate is a wildcard certificate. * `1` — Wildcard. * `0` — Not a wildcard. [optional]
ssldomain str The best domain to use to access the service. [optional]
ssldomain_matches_cert int Whether an SSL-protected domain matches the certificate. * `1` — Matches. * `0` — Does not match. [optional]

Example

from clientapi_cpanel.models.inline_response200423_result_data import InlineResponse200423ResultData

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

# convert the object into a dict
inline_response200423_result_data_dict = inline_response200423_result_data_instance.to_dict()
# create an instance of InlineResponse200423ResultData from a dict
inline_response200423_result_data_from_dict = InlineResponse200423ResultData.from_dict(inline_response200423_result_data_dict)

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