/** * 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. */ import type { Pagination } from './Pagination'; import type { CertificateKeyPair } from './CertificateKeyPair'; /** * * @export * @interface PaginatedCertificateKeyPairList */ export interface PaginatedCertificateKeyPairList { /** * * @type {Pagination} * @memberof PaginatedCertificateKeyPairList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedCertificateKeyPairList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedCertificateKeyPairList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedCertificateKeyPairList interface. */ export declare function instanceOfPaginatedCertificateKeyPairList(value: object): value is PaginatedCertificateKeyPairList; export declare function PaginatedCertificateKeyPairListFromJSON(json: any): PaginatedCertificateKeyPairList; export declare function PaginatedCertificateKeyPairListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCertificateKeyPairList; export declare function PaginatedCertificateKeyPairListToJSON(json: any): PaginatedCertificateKeyPairList; export declare function PaginatedCertificateKeyPairListToJSONTyped(value?: PaginatedCertificateKeyPairList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedCertificateKeyPairList.d.ts.map