/* tslint:disable */
/* eslint-disable */
/**
* TeamCity REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2018.1 (current)
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { MatrixBuildFeatureDescriptor } from './matrix-build-feature-descriptor';
// May contain unused imports in some cases
// @ts-ignore
import type { MatrixDependencies } from './matrix-dependencies';
/**
* Stores unique matrix build settings. Matrix builds are virtual builds spawned by build configurations with the Matrix Build feature. This object is accessible via the `build.matrixConfiguration` field.
* @export
* @interface MatrixConfiguration
*/
export interface MatrixConfiguration {
/**
* This is the internal property and is not intended to be used.
* @type {boolean}
* @memberof MatrixConfiguration
*/
default?: boolean;
/**
*
* @type {MatrixBuildFeatureDescriptor}
* @memberof MatrixConfiguration
*/
parameters?: MatrixBuildFeatureDescriptor;
/**
* Returns *true* if the build feature is enabled; otherwise, *false*.
* @type {boolean}
* @memberof MatrixConfiguration
*/
enabled?: boolean;
/**
*
* @type {MatrixDependencies}
* @memberof MatrixConfiguration
*/
dependencies?: MatrixDependencies;
}