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