/** * 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 { PartialUser } from './PartialUser'; import type { RequestableTarget } from './RequestableTarget'; import type { RequestStatus } from './RequestStatus'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface GrantRequest */ export interface GrantRequest { /** * * @type {Date} * @memberof GrantRequest */ readonly created: Date; /** * * @type {PartialUser} * @memberof GrantRequest */ readonly createdBy: PartialUser; /** * * @type {{ [key: string]: any; }} * @memberof GrantRequest */ requesterData?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof GrantRequest */ fulfillerData?: { [key: string]: any; }; /** * * @type {PartialUser} * @memberof GrantRequest */ readonly revokedBy: PartialUser | null; /** * * @type {PartialUser} * @memberof GrantRequest */ readonly agentOwner: PartialUser | null; /** * * @type {boolean} * @memberof GrantRequest */ readonly isActive: boolean; /** * * @type {Date} * @memberof GrantRequest */ expires?: Date | null; /** * * @type {RequestStatus} * @memberof GrantRequest */ readonly status: RequestStatus; /** * * @type {Array} * @memberof GrantRequest */ readonly targets: Array; /** * * @type {Array} * @memberof GrantRequest */ readonly targetObjs: Array; /** * * @type {string} * @memberof GrantRequest */ uuid?: string; } /** * Check if a given object implements the GrantRequest interface. */ export declare function instanceOfGrantRequest(value: object): value is GrantRequest; export declare function GrantRequestFromJSON(json: any): GrantRequest; export declare function GrantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantRequest; export declare function GrantRequestToJSON(json: any): GrantRequest; export declare function GrantRequestToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GrantRequest.d.ts.map