/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { LicenseStatusEnum } from './LicenseStatusEnum'; import type { Config } from './Config'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface AgentConfig */ export interface AgentConfig { /** * * @type {string} * @memberof AgentConfig */ readonly deviceId: string; /** * * @type {number} * @memberof AgentConfig */ readonly refreshInterval: number; /** * * @type {string} * @memberof AgentConfig */ readonly authorizationFlow: string | null; /** * * @type {{ [key: string]: any; }} * @memberof AgentConfig */ readonly jwksAuth: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof AgentConfig */ readonly jwksChallenge: { [key: string]: any; } | null; /** * * @type {number} * @memberof AgentConfig */ nssUidOffset: number; /** * * @type {number} * @memberof AgentConfig */ nssGidOffset: number; /** * * @type {boolean} * @memberof AgentConfig */ authTerminateSessionOnExpiry: boolean; /** * * @type {Config} * @memberof AgentConfig */ readonly systemConfig: Config; /** * * @type {LicenseStatusEnum} * @memberof AgentConfig */ readonly licenseStatus: LicenseStatusEnum | null; } /** * Check if a given object implements the AgentConfig interface. */ export declare function instanceOfAgentConfig(value: object): value is AgentConfig; export declare function AgentConfigFromJSON(json: any): AgentConfig; export declare function AgentConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentConfig; export declare function AgentConfigToJSON(json: any): AgentConfig; export declare function AgentConfigToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentConfig.d.ts.map