/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { mapValues } from '../runtime'; /** * 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 function instanceOfRole(value: object): value is Role { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; return true; } export function RoleFromJSON(json: any): Role { return RoleFromJSONTyped(json, false); } export function RoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Role { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], }; } export function RoleToJSON(json: any): Role { return RoleToJSONTyped(json, false); } export function RoleToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], }; }