/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.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. */ /** * * @export * @interface GetProjectChangelogResponseDataInner */ export interface GetProjectChangelogResponseDataInner { /** * The source of change, for example \'app\', \'mobile\', \'api\', etc. * @type {string} */ 'change_source'?: string | null; /** * The user agent from which the change was made * @type {string} */ 'change_source_user_agent'?: string | null; /** * The date and time of the change in ISO 8601 format * @type {string} */ 'time'?: string; /** * A map of field keys to their new values after the change * @type {{ [key: string]: any | undefined; }} */ 'new_values'?: { [key: string]: any | undefined; }; /** * A map of field keys to their previous values before the change * @type {{ [key: string]: any | undefined; }} */ 'old_values'?: { [key: string]: any | undefined; }; /** * The ID of the user who made the change * @type {number} */ 'actor_user_id'?: number; }