/** * Informational or warning messages returned by AvaTax with a transaction * @export * @class AvaTaxMessage */ export declare class AvaTaxMessage { /** * @type {string} * @memberof AvaTaxMessage */ summary?: string | undefined; /** * @type {string} * @memberof AvaTaxMessage */ details?: string | undefined; /** * @type {string} * @memberof AvaTaxMessage */ refersTo?: string | undefined; /** * @type {string} * @memberof AvaTaxMessage */ severity?: string | undefined; /** * @type {string} * @memberof AvaTaxMessage */ source?: string | undefined; }