/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * CertificateKeyPair Serializer * @export * @interface CertificateKeyPairRequest */ export interface CertificateKeyPairRequest { /** * * @type {string} * @memberof CertificateKeyPairRequest */ name: string; /** * PEM-encoded Certificate data * @type {string} * @memberof CertificateKeyPairRequest */ certificateData: string; /** * Optional Private Key. If this is set, you can use this keypair for encryption. * @type {string} * @memberof CertificateKeyPairRequest */ keyData?: string; } /** * Check if a given object implements the CertificateKeyPairRequest interface. */ export declare function instanceOfCertificateKeyPairRequest(value: object): value is CertificateKeyPairRequest; export declare function CertificateKeyPairRequestFromJSON(json: any): CertificateKeyPairRequest; export declare function CertificateKeyPairRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CertificateKeyPairRequest; export declare function CertificateKeyPairRequestToJSON(json: any): CertificateKeyPairRequest; export declare function CertificateKeyPairRequestToJSONTyped(value?: CertificateKeyPairRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CertificateKeyPairRequest.d.ts.map