Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.7 KB

File metadata and controls

42 lines (33 loc) · 2.7 KB

InlineResponse200302ResultData

Properties

Name Type Description Notes
created_time int When the system created the order. [optional]
csr str The text of the Certificate Request (CSR). [optional]
domains List[str] A list of domains on the certificate. [optional]
expired int Whether the system has deleted the item from the pending queue. * `1` - Deleted. * `0` - Not deleted. [optional]
first_poll_time int The first time that the system polled the provider for the 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. * `CertificateNotFound` - The system cannot locate the specified certificate. * `RequiresApproval` - The specified certificate requires approval. * `OrderCanceled` - The system cancelled the order of the specified certificate. * `OrderItemCanceled` - The system cancelled 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] A list of virtual host names. [optional]

Example

from clientapi_cpanel.models.inline_response200302_result_data import InlineResponse200302ResultData

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

# convert the object into a dict
inline_response200302_result_data_dict = inline_response200302_result_data_instance.to_dict()
# create an instance of InlineResponse200302ResultData from a dict
inline_response200302_result_data_from_dict = InlineResponse200302ResultData.from_dict(inline_response200302_result_data_dict)

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