/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { LanguageRuntime } from './language-runtime';
import { ScriptRunner } from './script-runner';
import { VariableTargets } from './variable-targets';
/**
 *
 * @export
 * @interface ApplicationOptions
 */
export interface ApplicationOptions {
    /**
     * The list of VariableTarget
     * @type {Array<VariableTargets>}
     * @memberof ApplicationOptions
     */
    variable_targets: Array<VariableTargets>;
    /**
     *
     * @type {Array<LanguageRuntime>}
     * @memberof ApplicationOptions
     */
    language_runtimes: Array<LanguageRuntime>;
    /**
     *
     * @type {Array<ScriptRunner>}
     * @memberof ApplicationOptions
     */
    script_runners: Array<ScriptRunner>;
}
