/* 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'; /** * ApplicationEntitlement Serializer * @export * @interface ApplicationEntitlement */ export interface ApplicationEntitlement { /** * * @type {string} * @memberof ApplicationEntitlement */ readonly pbmUuid: string; /** * * @type {string} * @memberof ApplicationEntitlement */ name: string; /** * * @type {string} * @memberof ApplicationEntitlement */ app: string; /** * * @type {{ [key: string]: any; }} * @memberof ApplicationEntitlement */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the ApplicationEntitlement interface. */ export function instanceOfApplicationEntitlement(value: object): value is ApplicationEntitlement { if (!('pbmUuid' in value) || value['pbmUuid'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('app' in value) || value['app'] === undefined) return false; return true; } export function ApplicationEntitlementFromJSON(json: any): ApplicationEntitlement { return ApplicationEntitlementFromJSONTyped(json, false); } export function ApplicationEntitlementFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationEntitlement { if (json == null) { return json; } return { 'pbmUuid': json['pbm_uuid'], 'name': json['name'], 'app': json['app'], 'attributes': json['attributes'] == null ? undefined : json['attributes'], }; } export function ApplicationEntitlementToJSON(json: any): ApplicationEntitlement { return ApplicationEntitlementToJSONTyped(json, false); } export function ApplicationEntitlementToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'app': value['app'], 'attributes': value['attributes'], }; }