/** * 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. */ /** * Base serializer class which doesn't implement create/update methods * @export * @interface AgentTokenResponse */ export interface AgentTokenResponse { /** * * @type {string} * @memberof AgentTokenResponse */ token: string; /** * * @type {number} * @memberof AgentTokenResponse */ expiresIn?: number; } /** * Check if a given object implements the AgentTokenResponse interface. */ export declare function instanceOfAgentTokenResponse(value: object): value is AgentTokenResponse; export declare function AgentTokenResponseFromJSON(json: any): AgentTokenResponse; export declare function AgentTokenResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentTokenResponse; export declare function AgentTokenResponseToJSON(json: any): AgentTokenResponse; export declare function AgentTokenResponseToJSONTyped(value?: AgentTokenResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentTokenResponse.d.ts.map