/* 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.
*/
/**
* Contains details about a user action tracked by a corresponding [AuditEvent](auditEvent.md).
* @export
* @interface AuditAction
*/
export interface AuditAction {
/**
* The type of the action. See [AuditLocator](auditLocator.md) for the list of supported values.
* @type {string}
* @memberof AuditAction
*/
name?: string;
/**
* The automatically generated unique ID of the action.
* @type {string}
* @memberof AuditAction
*/
id?: string;
/**
* The description of the audit action displayed in TeamCity UI.Includes placeholders for the name of the affected entity (for example, a build configuration whose settings were edited), username of a person who performed the action, link that opens the corresponding changes diff, and so on.
* @type {string}
* @memberof AuditAction
*/
pattern?: string;
}