/** * 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. */ /** * 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 declare function instanceOfApplicationEntitlement(value: object): value is ApplicationEntitlement; export declare function ApplicationEntitlementFromJSON(json: any): ApplicationEntitlement; export declare function ApplicationEntitlementFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationEntitlement; export declare function ApplicationEntitlementToJSON(json: any): ApplicationEntitlement; export declare function ApplicationEntitlementToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApplicationEntitlement.d.ts.map