Type Alias AuthSettingsResource

The authentication settings for a tenant, controlling user session duration and inactivity behavior.

type AuthSettingsResource = {
    id?: string;
    isDefault?: boolean;
    maxUserSessionLifespanMinutes: number;
    tenantId: string;
    userSessionInactivityTimeoutMinutes: number;
}
Index

Properties

id?: string

The unique identifier for the authentication settings.

isDefault?: boolean
maxUserSessionLifespanMinutes: number
tenantId: string
userSessionInactivityTimeoutMinutes: number