/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Describes changes to a file * @export * @interface InlineResponse2004Files */ export interface InlineResponse2004Files { /** * The path of the file. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Files */ path: string; /** * The URL of this file. Max length is 1024 characters * @type {string} * @memberof InlineResponse2004Files */ url: string; /** * The operation performed on this file * @type {string} * @memberof InlineResponse2004Files */ changeType: InlineResponse2004FilesChangeTypeEnum; /** * Number of lines added to the file * @type {number} * @memberof InlineResponse2004Files */ linesAdded: number; /** * Number of lines removed from the file * @type {number} * @memberof InlineResponse2004Files */ linesRemoved: number; } export declare function InlineResponse2004FilesFromJSON(json: any): InlineResponse2004Files; export declare function InlineResponse2004FilesFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse2004Files; export declare function InlineResponse2004FilesToJSON(value?: InlineResponse2004Files): any; /** * @export * @enum {string} */ export declare enum InlineResponse2004FilesChangeTypeEnum { ADDED = "ADDED", COPIED = "COPIED", DELETED = "DELETED", MODIFIED = "MODIFIED", MOVED = "MOVED", UNKNOWN = "UNKNOWN" }