/** * 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 { FlowSetRequest } from './FlowSetRequest'; import type { NetworkBindingEnum } from './NetworkBindingEnum'; /** * UserLoginStage Serializer * @export * @interface PatchedUserLoginStageRequest */ export interface PatchedUserLoginStageRequest { /** * * @type {string} * @memberof PatchedUserLoginStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedUserLoginStageRequest */ 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 PatchedUserLoginStageRequest */ sessionDuration?: string; /** * Terminate all other sessions of the user logging in. * @type {boolean} * @memberof PatchedUserLoginStageRequest */ 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 PatchedUserLoginStageRequest */ rememberMeOffset?: string; /** * Bind sessions created by this stage to the configured network * @type {NetworkBindingEnum} * @memberof PatchedUserLoginStageRequest */ networkBinding?: NetworkBindingEnum; /** * Bind sessions created by this stage to the configured GeoIP location * @type {GeoipBindingEnum} * @memberof PatchedUserLoginStageRequest */ 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 PatchedUserLoginStageRequest */ rememberDevice?: string; } /** * Check if a given object implements the PatchedUserLoginStageRequest interface. */ export declare function instanceOfPatchedUserLoginStageRequest(value: object): value is PatchedUserLoginStageRequest; export declare function PatchedUserLoginStageRequestFromJSON(json: any): PatchedUserLoginStageRequest; export declare function PatchedUserLoginStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedUserLoginStageRequest; export declare function PatchedUserLoginStageRequestToJSON(json: any): PatchedUserLoginStageRequest; export declare function PatchedUserLoginStageRequestToJSONTyped(value?: PatchedUserLoginStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedUserLoginStageRequest.d.ts.map