/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EntityProperty } from './'; /** * Details of a changed worklog. * @export * @interface ChangedWorklog */ export interface ChangedWorklog { /** * Details of properties associated with the change. * @type {Array} * @memberof ChangedWorklog */ readonly properties?: Array; /** * The datetime of the change. * @type {number} * @memberof ChangedWorklog */ readonly updatedTime?: number; /** * The ID of the worklog. * @type {number} * @memberof ChangedWorklog */ readonly worklogId?: number; } export declare function ChangedWorklogFromJSON(json: any): ChangedWorklog; export declare function ChangedWorklogFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangedWorklog; export declare function ChangedWorklogToJSON(value?: ChangedWorklog): any;