/** * 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 { Agent } from './Agent'; /** * Response returned once when an agent is created, carrying the one-time API token. * @export * @interface AgentCreated */ export interface AgentCreated { /** * * @type {Agent} * @memberof AgentCreated */ readonly agent: Agent; /** * * @type {string} * @memberof AgentCreated */ readonly token: string; } /** * Check if a given object implements the AgentCreated interface. */ export declare function instanceOfAgentCreated(value: object): value is AgentCreated; export declare function AgentCreatedFromJSON(json: any): AgentCreated; export declare function AgentCreatedFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentCreated; export declare function AgentCreatedToJSON(json: any): AgentCreated; export declare function AgentCreatedToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentCreated.d.ts.map