/** * 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 PatchedApplicationEntitlementRequest */ export interface PatchedApplicationEntitlementRequest { /** * * @type {string} * @memberof PatchedApplicationEntitlementRequest */ name?: string; /** * * @type {string} * @memberof PatchedApplicationEntitlementRequest */ app?: string; /** * * @type {{ [key: string]: any; }} * @memberof PatchedApplicationEntitlementRequest */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the PatchedApplicationEntitlementRequest interface. */ export declare function instanceOfPatchedApplicationEntitlementRequest(value: object): value is PatchedApplicationEntitlementRequest; export declare function PatchedApplicationEntitlementRequestFromJSON(json: any): PatchedApplicationEntitlementRequest; export declare function PatchedApplicationEntitlementRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedApplicationEntitlementRequest; export declare function PatchedApplicationEntitlementRequestToJSON(json: any): PatchedApplicationEntitlementRequest; export declare function PatchedApplicationEntitlementRequestToJSONTyped(value?: PatchedApplicationEntitlementRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedApplicationEntitlementRequest.d.ts.map