/** * 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 { FlowSetRequest } from './FlowSetRequest'; /** * Stage Serializer * @export * @interface StageRequest */ export interface StageRequest { /** * * @type {string} * @memberof StageRequest */ name: string; /** * * @type {Array} * @memberof StageRequest */ flowSet?: Array; } /** * Check if a given object implements the StageRequest interface. */ export declare function instanceOfStageRequest(value: object): value is StageRequest; export declare function StageRequestFromJSON(json: any): StageRequest; export declare function StageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StageRequest; export declare function StageRequestToJSON(json: any): StageRequest; export declare function StageRequestToJSONTyped(value?: StageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StageRequest.d.ts.map