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
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
fromclientapi_cpanel.models.inline_response200302_result_dataimportInlineResponse200302ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200302ResultData from a JSON stringinline_response200302_result_data_instance=InlineResponse200302ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200302ResultData.to_json())
# convert the object into a dictinline_response200302_result_data_dict=inline_response200302_result_data_instance.to_dict()
# create an instance of InlineResponse200302ResultData from a dictinline_response200302_result_data_from_dict=InlineResponse200302ResultData.from_dict(inline_response200302_result_data_dict)