/** * 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 { GeoipBindingEnum } from './GeoipBindingEnum'; import type { FlowSet } from './FlowSet'; import type { NetworkBindingEnum } from './NetworkBindingEnum'; /** * UserLoginStage Serializer * @export * @interface UserLoginStage */ export interface UserLoginStage { /** * * @type {string} * @memberof UserLoginStage */ readonly pk: string; /** * * @type {string} * @memberof UserLoginStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof UserLoginStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof UserLoginStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof UserLoginStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof UserLoginStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof UserLoginStage */ flowSet?: Array; /** * Determines how long a session lasts. Default of 0 means that the sessions lasts until the browser is closed. (Format: hours=-1;minutes=-2;seconds=-3) * @type {string} * @memberof UserLoginStage */ sessionDuration?: string; /** * Terminate all other sessions of the user logging in. * @type {boolean} * @memberof UserLoginStage */ terminateOtherSessions?: boolean; /** * Offset the session will be extended by when the user picks the remember me option. Default of 0 means that the remember me option will not be shown. (Format: hours=-1;minutes=-2;seconds=-3) * @type {string} * @memberof UserLoginStage */ rememberMeOffset?: string; /** * Bind sessions created by this stage to the configured network * @type {NetworkBindingEnum} * @memberof UserLoginStage */ networkBinding?: NetworkBindingEnum; /** * Bind sessions created by this stage to the configured GeoIP location * @type {GeoipBindingEnum} * @memberof UserLoginStage */ geoipBinding?: GeoipBindingEnum; /** * When set to a non-zero value, authentik will save a cookie with a longer expiry,to remember the device the user is logging in from. (Format: hours=-1;minutes=-2;seconds=-3) * @type {string} * @memberof UserLoginStage */ rememberDevice?: string; } /** * Check if a given object implements the UserLoginStage interface. */ export declare function instanceOfUserLoginStage(value: object): value is UserLoginStage; export declare function UserLoginStageFromJSON(json: any): UserLoginStage; export declare function UserLoginStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLoginStage; export declare function UserLoginStageToJSON(json: any): UserLoginStage; export declare function UserLoginStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserLoginStage.d.ts.map