/** * 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. */ /** * Details of names changed in the record event. * @export * @interface ChangedValueBean */ export interface ChangedValueBean { /** * The value of the field before the change. * @type {string} * @memberof ChangedValueBean */ readonly changedFrom?: string; /** * The name of the field changed. * @type {string} * @memberof ChangedValueBean */ readonly fieldName?: string; /** * The value of the field after the change. * @type {string} * @memberof ChangedValueBean */ readonly changedTo?: string; } export declare function ChangedValueBeanFromJSON(json: any): ChangedValueBean; export declare function ChangedValueBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangedValueBean; export declare function ChangedValueBeanToJSON(value?: ChangedValueBean): any;