/** * 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 PatchedConsentStageRequest */ export interface PatchedConsentStageRequest { /** * * @type {string} * @memberof PatchedConsentStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedConsentStageRequest */ flowSet?: Array; /** * * @type {ConsentStageModeEnum} * @memberof PatchedConsentStageRequest */ mode?: ConsentStageModeEnum; /** * Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3). * @type {string} * @memberof PatchedConsentStageRequest */ consentExpireIn?: string; } /** * Check if a given object implements the PatchedConsentStageRequest interface. */ export declare function instanceOfPatchedConsentStageRequest(value: object): value is PatchedConsentStageRequest; export declare function PatchedConsentStageRequestFromJSON(json: any): PatchedConsentStageRequest; export declare function PatchedConsentStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedConsentStageRequest; export declare function PatchedConsentStageRequestToJSON(json: any): PatchedConsentStageRequest; export declare function PatchedConsentStageRequestToJSONTyped(value?: PatchedConsentStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedConsentStageRequest.d.ts.map