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 certificate signing request's (CSR) text. A CSR file in Base64 PEM format.
[optional]
domains
List[str]
The domains on the certificate.
[optional]
expired
int
Whether the pending queue item has been deleted. * `1` - Deleted. * `0` - Not deleted.
[optional]
first_poll_time
int
The first time that the system polled the provider for the certificate.
[optional]
identity_verification
object
hash that contains information to verify an OV or EV certificate request. Notes: The function returns this hash for OV or EV certificate requests. This hash includes returns that vary between certificate providers. The output example demonstrates what the cPStore returns for an OV certificate.
[optional]
last_poll_time
int
The last time that the system polled the provider for the certificate.
[optional]
last_status_code
str
The last status code of the order. The function returns the value in the unnamed hash. * `CertificateNotFound` - The system cannot locate the specified certificate. * `RequiresApproval` - The specified certificate requires approval. * `OrderCanceled` - The system canceled the order of the specified certificate. * `OrderItemCanceled` - The system canceled the order item of the specified certificate.
[optional]
order_id
str
The ID of the order.
[optional]
order_item_id
str
The ID of the ordered item.
[optional]
product_id
str
The product's ID.
[optional]
provider
str
The cPanel Market provider's name.
[optional]
status
str
The status of the order. * `confirmed` - Payment confirmed. * `unconfirmed` - Payment not confirmed.
[optional]
support_uri
str
The URI of the cPanel Market Provider's support site.
[optional]
vhost_names
List[str]
The virtual host domains on the certificate.
[optional]
Example
fromclientapi_cpanel.models.inline_response200307_result_dataimportInlineResponse200307ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200307ResultData from a JSON stringinline_response200307_result_data_instance=InlineResponse200307ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200307ResultData.to_json())
# convert the object into a dictinline_response200307_result_data_dict=inline_response200307_result_data_instance.to_dict()
# create an instance of InlineResponse200307ResultData from a dictinline_response200307_result_data_from_dict=InlineResponse200307ResultData.from_dict(inline_response200307_result_data_dict)