/** * 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 PatchedSourceStageRequest */ export interface PatchedSourceStageRequest { /** * * @type {string} * @memberof PatchedSourceStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedSourceStageRequest */ flowSet?: Array; /** * * @type {string} * @memberof PatchedSourceStageRequest */ 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 PatchedSourceStageRequest */ resumeTimeout?: string; } /** * Check if a given object implements the PatchedSourceStageRequest interface. */ export declare function instanceOfPatchedSourceStageRequest(value: object): value is PatchedSourceStageRequest; export declare function PatchedSourceStageRequestFromJSON(json: any): PatchedSourceStageRequest; export declare function PatchedSourceStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedSourceStageRequest; export declare function PatchedSourceStageRequestToJSON(json: any): PatchedSourceStageRequest; export declare function PatchedSourceStageRequestToJSONTyped(value?: PatchedSourceStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedSourceStageRequest.d.ts.map