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 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
fromclientapi_cpanel.models.inline_response200423_result_dataimportInlineResponse200423ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200423ResultData from a JSON stringinline_response200423_result_data_instance=InlineResponse200423ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200423ResultData.to_json())
# convert the object into a dictinline_response200423_result_data_dict=inline_response200423_result_data_instance.to_dict()
# create an instance of InlineResponse200423ResultData from a dictinline_response200423_result_data_from_dict=InlineResponse200423ResultData.from_dict(inline_response200423_result_data_dict)