/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Certificate */ export interface Certificate { /** * * @type {string} * @memberof Certificate */ certificate: string; /** * * @type {string} * @memberof Certificate */ key?: string; /** * * @type {string} * @memberof Certificate */ readonly name: string; /** * * @type {string} * @memberof Certificate */ readonly issuer: string; /** * * @type {string} * @memberof Certificate */ readonly domains: string; /** * * @type {string} * @memberof Certificate */ readonly fingerprint: string; /** * * @type {string} * @memberof Certificate */ readonly notValidBefore: string; /** * * @type {string} * @memberof Certificate */ readonly notValidAfter: string; /** * * @type {string} * @memberof Certificate */ readonly expired: string; /** * * @type {string} * @memberof Certificate */ readonly keyMatches: string; /** * * @type {string} * @memberof Certificate */ readonly domainMatches: string; } export declare function CertificateFromJSON(json: any): Certificate; export declare function CertificateFromJSONTyped(json: any, ignoreDiscriminator: boolean): Certificate; export declare function CertificateToJSON(value?: Certificate | null): any;