/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * 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 { PartialUser } from './PartialUser'; import type { PolicyBehaviorEnum } from './PolicyBehaviorEnum'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface Agent */ export interface Agent { /** * * @type {number} * @memberof Agent */ readonly pk: number; /** * Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. * @type {string} * @memberof Agent */ username: string; /** * User's display name. * @type {string} * @memberof Agent */ name: string; /** * Designates whether this user should be treated as active. Unselect this instead of deleting accounts. * @type {boolean} * @memberof Agent */ isActive?: boolean; /** * * @type {Date} * @memberof Agent */ lastLogin?: Date | null; /** * * @type {string} * @memberof Agent */ email?: string; /** * * @type {{ [key: string]: any; }} * @memberof Agent */ attributes?: { [key: string]: any; }; /** * * @type {string} * @memberof Agent */ readonly uid: string; /** * * @type {string} * @memberof Agent */ readonly uuid: string; /** * * @type {boolean} * @memberof Agent */ expiring?: boolean; /** * * @type {Date} * @memberof Agent */ expires?: Date | null; /** * * @type {PartialUser} * @memberof Agent */ readonly parent: PartialUser; /** * * @type {PolicyBehaviorEnum} * @memberof Agent */ readonly policyBehavior: PolicyBehaviorEnum; /** * Identifier of the agent's API token, so its key can be retrieved/copied later. * @type {string} * @memberof Agent */ readonly tokenIdentifier: string | null; } /** * Check if a given object implements the Agent interface. */ export declare function instanceOfAgent(value: object): value is Agent; export declare function AgentFromJSON(json: any): Agent; export declare function AgentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Agent; export declare function AgentToJSON(json: any): Agent; export declare function AgentToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Agent.d.ts.map