/** * 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 PermissionRequest */ export interface PermissionRequest { /** * * @type {string} * @memberof PermissionRequest */ name: string; /** * * @type {string} * @memberof PermissionRequest */ codename: string; } /** * Check if a given object implements the PermissionRequest interface. */ export declare function instanceOfPermissionRequest(value: object): value is PermissionRequest; export declare function PermissionRequestFromJSON(json: any): PermissionRequest; export declare function PermissionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionRequest; export declare function PermissionRequestToJSON(json: any): PermissionRequest; export declare function PermissionRequestToJSONTyped(value?: PermissionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PermissionRequest.d.ts.map