/** * 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'; /** * SourceStage Serializer * @export * @interface SourceStageRequest */ export interface SourceStageRequest { /** * * @type {string} * @memberof SourceStageRequest */ name: string; /** * * @type {Array} * @memberof SourceStageRequest */ flowSet?: Array; /** * * @type {string} * @memberof SourceStageRequest */ source: string; /** * Amount of time a user can take to return from the source to continue the flow (Format: hours=-1;minutes=-2;seconds=-3) * @type {string} * @memberof SourceStageRequest */ resumeTimeout?: string; } /** * Check if a given object implements the SourceStageRequest interface. */ export declare function instanceOfSourceStageRequest(value: object): value is SourceStageRequest; export declare function SourceStageRequestFromJSON(json: any): SourceStageRequest; export declare function SourceStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceStageRequest; export declare function SourceStageRequestToJSON(json: any): SourceStageRequest; export declare function SourceStageRequestToJSONTyped(value?: SourceStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SourceStageRequest.d.ts.map