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