/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ExternalAuth */ export interface ExternalAuth { /** * Whether external JWT authentication is enabled * @type {boolean} * @memberof ExternalAuth */ enabled?: boolean; /** * * @type {string} * @memberof ExternalAuth */ iss?: string | null; /** * * @type {string} * @memberof ExternalAuth */ aud?: string | null; /** * * @type {string} * @memberof ExternalAuth */ jwksUrl?: string; /** * * @type {string} * @memberof ExternalAuth */ cookieName?: string | null; } export declare function ExternalAuthFromJSON(json: any): ExternalAuth; export declare function ExternalAuthFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExternalAuth; export declare function ExternalAuthToJSON(value?: ExternalAuth | null): any;