/** * Verify this transaction by matching it to values in your accounting system. You may specify one or more of the following fields to verify: `date`, `totalAmount`, or `totalTax`. This call will report an error if there is any difference between the data stored in AvaTax and the data stored in your accounting system. * @export * @class VerifyTransactionModel */ export declare class VerifyTransactionModel { /** * @type {Date} * @memberof VerifyTransactionModel */ verifyTransactionDate?: Date | undefined; /** * @type {number} * @memberof VerifyTransactionModel */ verifyTotalAmount?: number | undefined; /** * @type {number} * @memberof VerifyTransactionModel */ verifyTotalTax?: number | undefined; }