Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 5.35 KB

InlineResponse200305ResultDataStatusDetails.md

File metadata and controls

38 lines (29 loc) · 5.35 KB

InlineResponse200305ResultDataStatusDetails

An object that contains specific information about the validation process.

Properties

Name Type Description Notes
brand_val_status str Whether the brand validation status has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The certificate's brand validation is not complete. * `completed` - The certificate's brand validation is complete. * `in-progress` - The certificate's brand validation is in progress. [optional]
certificate_status str Whether the provider has issued the SSL certificate. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The certificate's issue is not completed. * `completed` - The provider has issued the certificate. * `in-progress` - The certificate's issue is in progress. [optional]
csr_status str Whether the certificate signing request (CSR) has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The CSR for the certificate is not complete. * `completed` - The CSR for the certificate is complete. * `in-progress` - The CSR for the certificate is in progress. [optional]
dcv_status str Whether Domain Control Validation (DCV) has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The DCV for the certificate is not complete. * `completed` - The DCV for the certificate is complete. * `in-progress` - The DCV for the certificate is in progress. [optional]
ev_click_through_status str Whether every requirement for the EV certificate has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The EV certificate's requirements check is not complete. * `completed` - The EV certificate's requirements check is complete. * `in-progress` - The EV certificate's requirements check is in progress. For more information, read Sectigo's What is required for validation? documentation. [optional]
free_dvup_status str Whether every requirement for the Domain Validated (DV) certificate has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The DV certificate's requirements check is not complete. * `completed` - The DV certificate's requirements check is complete. * `in-progress` - The DV certificate's requirements check is in progress. [optional]
organization_validation_status str Whether every requirement for the OV certificate has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The OV certificate's requirements check is not complete. * `completed` - The OV certificate's requirements check is complete. * `in-progress` - The OV certificate's requirements check is in progress. [optional]
ov_callback_status str Whether the Certificate Authority (CA) has verified the organization's validity via a phone call. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The CA has not verified the organization's validity via phone. * `completed` - The CA has verified the organization's validity via phone. * `in-progress` - The CA's verification of the organization's validity via phone is in progress. [optional]
validation_status str Whether the validation process has completed. * `not applicable` - This is not applicable for the certificate. * `not-completed` - The certificate's validation is not complete. * `completed` - The certificate's validation is complete. * `in-progress` - The certificate's validation is in progress. [optional]

Example

from clientapi_cpanel.models.inline_response200305_result_data_status_details import InlineResponse200305ResultDataStatusDetails

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

# convert the object into a dict
inline_response200305_result_data_status_details_dict = inline_response200305_result_data_status_details_instance.to_dict()
# create an instance of InlineResponse200305ResultDataStatusDetails from a dict
inline_response200305_result_data_status_details_from_dict = InlineResponse200305ResultDataStatusDetails.from_dict(inline_response200305_result_data_status_details_dict)

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