/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The status of a custom domain * * - STATUS_UNSPECIFIED: The status is not specified * - STATUS_INACTIVE: The domain is inactive. It was created but not checked yet. * - STATUS_DOMAIN_PENDING: The domain is pending. Last time it was checked, it was not pointing to the correct Linkbreakers subdomain. * - STATUS_VERIFICATION_PENDING: The domain is pending verification. Please verify through TXT record. * - STATUS_CERTIFICATE_PENDING: The domain is pending certificate. The SSL certificate is not yet ready. * - STATUS_ACTIVE: The domain is fully active * - STATUS_RENEWAL_PENDING: The domain is still serving traffic on a valid certificate, but the renewal * of that certificate cannot be validated. It stops working at certificate_expires_at. * - STATUS_EXPIRED: The certificate expired or was withdrawn. The domain no longer serves HTTPS. * @export */ export declare const CustomDomainStatus: { readonly StatusUnspecified: "STATUS_UNSPECIFIED"; readonly StatusInactive: "STATUS_INACTIVE"; readonly StatusDomainPending: "STATUS_DOMAIN_PENDING"; readonly StatusVerificationPending: "STATUS_VERIFICATION_PENDING"; readonly StatusCertificatePending: "STATUS_CERTIFICATE_PENDING"; readonly StatusActive: "STATUS_ACTIVE"; readonly StatusRenewalPending: "STATUS_RENEWAL_PENDING"; readonly StatusExpired: "STATUS_EXPIRED"; }; export type CustomDomainStatus = typeof CustomDomainStatus[keyof typeof CustomDomainStatus]; export declare function instanceOfCustomDomainStatus(value: any): boolean; export declare function CustomDomainStatusFromJSON(json: any): CustomDomainStatus; export declare function CustomDomainStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomDomainStatus; export declare function CustomDomainStatusToJSON(value?: CustomDomainStatus | null): any; export declare function CustomDomainStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): CustomDomainStatus;