/** * Update history for Avalara.AvaTax.AccountServices.Models.v2.CustomerModel and Avalara.AvaTax.AccountServices.Models.v2.CertificateModel. This is exposed in the URL's `$includes`. * @export * @class HistoryModel */ export declare class HistoryModel { /** * @type {number} * @memberof HistoryModel */ id?: number | undefined; /** * @type {string} * @memberof HistoryModel */ account?: string | undefined; /** * @type {string} * @memberof HistoryModel */ field?: string | undefined; /** * @type {string} * @memberof HistoryModel */ oldValue?: string | undefined; /** * @type {string} * @memberof HistoryModel */ newValue?: string | undefined; /** * @type {Date} * @memberof HistoryModel */ created?: Date | undefined; }