/** * 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. */ /** * Body for an agent requesting access for itself. Deliberately narrower than * `GrantRequestCreateSerializer`: an agent may not pick its own expiry, which is * derived from the granting rules and capped by the agent's own lifetime. * @export * @interface AgentGrantRequestCreateRequest */ export interface AgentGrantRequestCreateRequest { /** * * @type {Array} * @memberof AgentGrantRequestCreateRequest */ pbms: Array; } /** * Check if a given object implements the AgentGrantRequestCreateRequest interface. */ export declare function instanceOfAgentGrantRequestCreateRequest(value: object): value is AgentGrantRequestCreateRequest; export declare function AgentGrantRequestCreateRequestFromJSON(json: any): AgentGrantRequestCreateRequest; export declare function AgentGrantRequestCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentGrantRequestCreateRequest; export declare function AgentGrantRequestCreateRequestToJSON(json: any): AgentGrantRequestCreateRequest; export declare function AgentGrantRequestCreateRequestToJSONTyped(value?: AgentGrantRequestCreateRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AgentGrantRequestCreateRequest.d.ts.map