import "../ApiClient-fBZ10h6n.mjs"; import { t as SupportDebugInfoAuthType } from "../SupportDebugInfoAuthType-2sXtOBc2.mjs"; import { t as SupportDebugInfoDeploymentType } from "../SupportDebugInfoDeploymentType-C02mbKJG.mjs"; //#region src/model/SupportDebugInfo.d.ts type ISupportDebugInfo = { kestraVersion: string; licenseId: string; authType: SupportDebugInfoAuthType; deploymentType: SupportDebugInfoDeploymentType; queueType: string; queueVersion: string; storageType: string; repositoryType: string; repositoryVersion: string; secretType: string; }; /** * @typedef {Object} ISupportDebugInfo * @property {String} kestraVersion * @property {String} licenseId * @property {SupportDebugInfoAuthType} authType * @property {SupportDebugInfoDeploymentType} deploymentType * @property {String} queueType * @property {String} queueVersion * @property {String} storageType * @property {String} repositoryType * @property {String} repositoryVersion * @property {String} secretType */ /** * The SupportDebugInfo model module. * @module model/SupportDebugInfo * @type {ISupportDebugInfo} */ declare class SupportDebugInfo { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any): void; /** * Constructs a SupportDebugInfo from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/SupportDebugInfo} obj Optional instance to populate. * @return {module:model/SupportDebugInfo} The populated SupportDebugInfo instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to SupportDebugInfo. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to SupportDebugInfo. */ static validateJSON(data: any): boolean; kestraVersion: string; licenseId: string; authType: SupportDebugInfoAuthType; deploymentType: SupportDebugInfoDeploymentType; queueType: string; queueVersion: string; storageType: string; repositoryType: string; repositoryVersion: string; secretType: string; } //#endregion export { ISupportDebugInfo, SupportDebugInfo as default };