/** * 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 { FlowSet } from './FlowSet'; /** * ConsentStage Serializer * @export * @interface ConsentStage */ export interface ConsentStage { /** * * @type {string} * @memberof ConsentStage */ readonly pk: string; /** * * @type {string} * @memberof ConsentStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof ConsentStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof ConsentStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof ConsentStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof ConsentStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof ConsentStage */ flowSet?: Array; /** * * @type {ConsentStageModeEnum} * @memberof ConsentStage */ mode?: ConsentStageModeEnum; /** * Offset after which consent expires. (Format: hours=1;minutes=2;seconds=3). * @type {string} * @memberof ConsentStage */ consentExpireIn?: string; } /** * Check if a given object implements the ConsentStage interface. */ export declare function instanceOfConsentStage(value: object): value is ConsentStage; export declare function ConsentStageFromJSON(json: any): ConsentStage; export declare function ConsentStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentStage; export declare function ConsentStageToJSON(json: any): ConsentStage; export declare function ConsentStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConsentStage.d.ts.map