/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * 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. */ /** * Global permission * @export * @interface Permission */ export interface Permission { /** * * @type {number} * @memberof Permission */ readonly id: number; /** * * @type {string} * @memberof Permission */ name: string; /** * * @type {string} * @memberof Permission */ codename: string; /** * * @type {string} * @memberof Permission */ readonly model: string; /** * * @type {string} * @memberof Permission */ readonly appLabel: string; /** * Human-readable app label * @type {string} * @memberof Permission */ readonly appLabelVerbose: string; /** * Human-readable model name * @type {string} * @memberof Permission */ readonly modelVerbose: string; } /** * Check if a given object implements the Permission interface. */ export declare function instanceOfPermission(value: object): value is Permission; export declare function PermissionFromJSON(json: any): Permission; export declare function PermissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Permission; export declare function PermissionToJSON(json: any): Permission; export declare function PermissionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Permission.d.ts.map