/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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. */ /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface AgentRequest */ export interface AgentRequest { /** * Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. * @type {string} * @memberof AgentRequest */ username: string; /** * User's display name. * @type {string} * @memberof AgentRequest */ name: string; /** * Designates whether this user should be treated as active. Unselect this instead of deleting accounts. * @type {boolean} * @memberof AgentRequest */ isActive?: boolean; /** * * @type {Date} * @memberof AgentRequest */ lastLogin?: Date | null; /** * * @type {string} * @memberof AgentRequest */ email?: string; /** * * @type {{ [key: string]: any; }} * @memberof AgentRequest */ attributes?: { [key: string]: any; }; /** * * @type {boolean} * @memberof AgentRequest */ expiring?: boolean; /** * * @type {Date} * @memberof AgentRequest */ expires?: Date | null; } /** * Check if a given object implements the AgentRequest interface. */ export declare function instanceOfAgentRequest(value: object): value is AgentRequest; export declare function AgentRequestFromJSON(json: any): AgentRequest; export declare function AgentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentRequest; export declare function AgentRequestToJSON(json: any): AgentRequest; export declare function AgentRequestToJSONTyped(value?: AgentRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentRequest.d.ts.map