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
Provider of the assigned certificate, or of the last recorded installation when none is assigned. `custom` means an uploaded certificate. Null when no certificate is assigned and no installation is recorded, which is also the case for free subdomains on the platform-managed certificate.
is_lifetime
bool
Whether the certificate comes from a lifetime provider managed by the platform, not an uploaded one. Follows `provider`: it reflects the last recorded installation when no certificate is assigned, and is false when `provider` is null.
is_https_redirect_enabled
bool
Whether HTTP requests to the website are redirected to HTTPS
expires_at
datetime
End of the assigned certificate validity period; null when no certificate details are available.
last_error
str
Last installation error, when it is one of the known displayable messages
Example
fromhostinger_api.models.hosting_v1_ssl_ssl_status_resourceimportHostingV1SslSslStatusResource# TODO update the JSON string belowjson="{}"# create an instance of HostingV1SslSslStatusResource from a JSON stringhosting_v1_ssl_ssl_status_resource_instance=HostingV1SslSslStatusResource.from_json(json)
# print the JSON string representation of the objectprint(HostingV1SslSslStatusResource.to_json())
# convert the object into a dicthosting_v1_ssl_ssl_status_resource_dict=hosting_v1_ssl_ssl_status_resource_instance.to_dict()
# create an instance of HostingV1SslSslStatusResource from a dicthosting_v1_ssl_ssl_status_resource_from_dict=HostingV1SslSslStatusResource.from_dict(hosting_v1_ssl_ssl_status_resource_dict)