/* 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 { Build } from './build';
// May contain unused imports in some cases
// @ts-ignore
import type { BuildType } from './build-type';
/**
* The link to the upstream build of a chain that processed this change. If a downstream build of a chain includes a change that was already processed by an upstream build, this change\'s type equals `SNAPSHOT_DEPENDENCY_VCS_CHANGE` and its `snapshotDependencyLink` property stores data about this upstream build.
* @export
* @interface SnapshotDependencyLink
*/
export interface SnapshotDependencyLink {
/**
*
* @type {Build}
* @memberof SnapshotDependencyLink
*/
build?: Build;
/**
*
* @type {BuildType}
* @memberof SnapshotDependencyLink
*/
buildType?: BuildType;
/**
* The branch of build configuration that was targeted by an upstream build.
* @type {string}
* @memberof SnapshotDependencyLink
*/
buildTypeBranch?: string;
}