/** * 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. */ import type { Application } from './Application'; /** * Generic representation of a single request target: whatever was actually * requested (an Application, an Application Entitlement, ...), always paired with the * parent it belongs to, so the UI/audit trail has that context even when the * request itself was scoped narrower than the whole app. * @export * @interface RequestableTarget */ export interface RequestableTarget { /** * Return object's verbose_name * @type {string} * @memberof RequestableTarget */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof RequestableTarget */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof RequestableTarget */ readonly metaModelName: string; /** * * @type {string} * @memberof RequestableTarget */ readonly pbmUuid: string; /** * * @type {string} * @memberof RequestableTarget */ readonly label: string; /** * * @type {Application} * @memberof RequestableTarget */ readonly parent: Application | null; } /** * Check if a given object implements the RequestableTarget interface. */ export declare function instanceOfRequestableTarget(value: object): value is RequestableTarget; export declare function RequestableTargetFromJSON(json: any): RequestableTarget; export declare function RequestableTargetFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestableTarget; export declare function RequestableTargetToJSON(json: any): RequestableTarget; export declare function RequestableTargetToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RequestableTarget.d.ts.map