/** * 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 { FlowSet } from './FlowSet'; /** * UserLogoutStage Serializer * @export * @interface UserLogoutStage */ export interface UserLogoutStage { /** * * @type {string} * @memberof UserLogoutStage */ readonly pk: string; /** * * @type {string} * @memberof UserLogoutStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof UserLogoutStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof UserLogoutStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof UserLogoutStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof UserLogoutStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof UserLogoutStage */ flowSet?: Array; } /** * Check if a given object implements the UserLogoutStage interface. */ export declare function instanceOfUserLogoutStage(value: object): value is UserLogoutStage; export declare function UserLogoutStageFromJSON(json: any): UserLogoutStage; export declare function UserLogoutStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLogoutStage; export declare function UserLogoutStageToJSON(json: any): UserLogoutStage; export declare function UserLogoutStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLogoutStage.d.ts.map