/** * 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 { ConsentStageModeEnum } from './ConsentStageModeEnum'; import type { FlowSetRequest } from './FlowSetRequest'; /** * ConsentStage Serializer * @export * @interface ConsentStageRequest */ export interface ConsentStageRequest { /** * * @type {string} * @memberof ConsentStageRequest */ name: string; /** * * @type {Array} * @memberof ConsentStageRequest */ flowSet?: Array; /** * * @type {ConsentStageModeEnum} * @memberof ConsentStageRequest */ mode?: ConsentStageModeEnum; /** * Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3). * @type {string} * @memberof ConsentStageRequest */ consentExpireIn?: string; } /** * Check if a given object implements the ConsentStageRequest interface. */ export declare function instanceOfConsentStageRequest(value: object): value is ConsentStageRequest; export declare function ConsentStageRequestFromJSON(json: any): ConsentStageRequest; export declare function ConsentStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentStageRequest; export declare function ConsentStageRequestToJSON(json: any): ConsentStageRequest; export declare function ConsentStageRequestToJSONTyped(value?: ConsentStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConsentStageRequest.d.ts.map