/** * 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 type { PolicyEngineMode } from './PolicyEngineMode'; /** * Application Serializer * @export * @interface ApplicationRequest */ export interface ApplicationRequest { /** * Application's display Name. * @type {string} * @memberof ApplicationRequest */ name: string; /** * Internal application name, used in URLs. * @type {string} * @memberof ApplicationRequest */ slug: string; /** * * @type {number} * @memberof ApplicationRequest */ provider?: number | null; /** * * @type {Array} * @memberof ApplicationRequest */ backchannelProviders?: Array; /** * Open launch URL in a new browser tab or window. * @type {boolean} * @memberof ApplicationRequest */ openInNewTab?: boolean; /** * * @type {string} * @memberof ApplicationRequest */ metaLaunchUrl?: string; /** * * @type {string} * @memberof ApplicationRequest */ metaDescription?: string; /** * * @type {string} * @memberof ApplicationRequest */ metaPublisher?: string; /** * * @type {PolicyEngineMode} * @memberof ApplicationRequest */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof ApplicationRequest */ group?: string; } /** * Check if a given object implements the ApplicationRequest interface. */ export declare function instanceOfApplicationRequest(value: object): value is ApplicationRequest; export declare function ApplicationRequestFromJSON(json: any): ApplicationRequest; export declare function ApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationRequest; export declare function ApplicationRequestToJSON(json: any): ApplicationRequest; export declare function ApplicationRequestToJSONTyped(value?: ApplicationRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApplicationRequest.d.ts.map