/** * 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. */ /** * Permission used for consent * @export * @interface ConsentPermission */ export interface ConsentPermission { /** * * @type {string} * @memberof ConsentPermission */ name: string; /** * * @type {string} * @memberof ConsentPermission */ id: string; } /** * Check if a given object implements the ConsentPermission interface. */ export declare function instanceOfConsentPermission(value: object): value is ConsentPermission; export declare function ConsentPermissionFromJSON(json: any): ConsentPermission; export declare function ConsentPermissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConsentPermission; export declare function ConsentPermissionToJSON(json: any): ConsentPermission; export declare function ConsentPermissionToJSONTyped(value?: ConsentPermission | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConsentPermission.d.ts.map