/* 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 { BuildType } from './build-type';
// May contain unused imports in some cases
// @ts-ignore
import type { Properties } from './properties';
/**
* An artifact dependency that defines rules for passing artifacts from an upstream build configuration to a target downstream configuration.
* @export
* @interface ArtifactDependency
*/
export interface ArtifactDependency {
/**
* The internal read-only ID of the object. This property is inherited from the base PropEntity class.
* @type {string}
* @memberof ArtifactDependency
*/
id?: string;
/**
* The public object name. Some objects, like build steps, support public names, while others, like build triggers, do not. This property is inherited from the base PropEntity class.
* @type {string}
* @memberof ArtifactDependency
*/
name?: string;
/**
* The object type. This property is inherited from the base PropEntity class.
* @type {string}
* @memberof ArtifactDependency
*/
type?: string;
/**
* Returns **rue** if the object is disabled and inactive; otherwise, **false**. This property is inherited from the base PropEntity class.
* @type {boolean}
* @memberof ArtifactDependency
*/
disabled?: boolean;
/**
* Returns **rue** if the object is inherited from another object; otherwise, **false**. This property is inherited from the base PropEntity class.
* @type {boolean}
* @memberof ArtifactDependency
*/
inherited?: boolean;
/**
* Returns the shortened (without the server URL) link to the current object. This property is inherited from the base PropEntity class.
* @type {string}
* @memberof ArtifactDependency
*/
href?: string;
/**
*
* @type {Properties}
* @memberof ArtifactDependency
*/
properties?: Properties;
/**
*
* @type {BuildType}
* @memberof ArtifactDependency
*/
'source-buildType'?: BuildType;
}