/** * 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 { ConsentStage } from './ConsentStage'; /** * * @export * @interface PaginatedConsentStageList */ export interface PaginatedConsentStageList { /** * * @type {Pagination} * @memberof PaginatedConsentStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedConsentStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedConsentStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedConsentStageList interface. */ export declare function instanceOfPaginatedConsentStageList(value: object): value is PaginatedConsentStageList; export declare function PaginatedConsentStageListFromJSON(json: any): PaginatedConsentStageList; export declare function PaginatedConsentStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedConsentStageList; export declare function PaginatedConsentStageListToJSON(json: any): PaginatedConsentStageList; export declare function PaginatedConsentStageListToJSONTyped(value?: PaginatedConsentStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedConsentStageList.d.ts.map