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