/** * 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. */ /** * Role serializer * @export * @interface Role */ export interface Role { /** * * @type {string} * @memberof Role */ readonly pk: string; /** * * @type {string} * @memberof Role */ name: string; } /** * Check if a given object implements the Role interface. */ export declare function instanceOfRole(value: object): value is Role; export declare function RoleFromJSON(json: any): Role; export declare function RoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Role; export declare function RoleToJSON(json: any): Role; export declare function RoleToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Role.d.ts.map