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