/* 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.
*/
/**
* The file changed by the specific commit.
* @export
* @interface FileChange
*/
export interface FileChange {
/**
* The revision a modified file had before the change.
* @type {string}
* @memberof FileChange
*/
'before-revision'?: string;
/**
* The revision a modified file obtained after the change.
* @type {string}
* @memberof FileChange
*/
'after-revision'?: string;
/**
* Specifies the type of a file edit: `added`, `removed`, or `edited`.
* @type {string}
* @memberof FileChange
*/
changeType?: string;
/**
*
* @type {string}
* @memberof FileChange
*/
changeTypeComment?: string;
/**
* The name of a modified file, including the relative repository path.
* @type {string}
* @memberof FileChange
*/
file?: string;
/**
* The relative name of a modified file.
* @type {string}
* @memberof FileChange
*/
'relative-file'?: string;
/**
* Returns **true** if a modified entity is a directory instead of a file; otherwise, **true**.
* @type {boolean}
* @memberof FileChange
*/
directory?: boolean;
}