/** * 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 { GrantRequest } from './GrantRequest'; /** * Response to an agent's access request: the request it created, plus the URL to hand to * the human it acts for. An agent has no browser, so it cannot run the approval itself -- * `fulfill_url` is what its owner opens to approve or deny. * @export * @interface AgentGrantRequestCreated */ export interface AgentGrantRequestCreated { /** * * @type {GrantRequest} * @memberof AgentGrantRequestCreated */ readonly grantRequest: GrantRequest; /** * * @type {string} * @memberof AgentGrantRequestCreated */ readonly fulfillUrl: string; } /** * Check if a given object implements the AgentGrantRequestCreated interface. */ export declare function instanceOfAgentGrantRequestCreated(value: object): value is AgentGrantRequestCreated; export declare function AgentGrantRequestCreatedFromJSON(json: any): AgentGrantRequestCreated; export declare function AgentGrantRequestCreatedFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentGrantRequestCreated; export declare function AgentGrantRequestCreatedToJSON(json: any): AgentGrantRequestCreated; export declare function AgentGrantRequestCreatedToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentGrantRequestCreated.d.ts.map