import * as Enums from '../enums/index'; /** * Verify that a MultiDocument object matches the information in your accounting system. If all attributes of the MultiDocument object match the values in your request, the MultiDocument object will be moved to the document status `Posted`. For more information on document status, see [DocumentStatus](https://developer.avalara.com/api-reference/avatax/rest/v2/models/enums/DocumentStatus/). * @export * @class VerifyMultiDocumentModel */ export declare class VerifyMultiDocumentModel { /** * @type {string} * @memberof VerifyMultiDocumentModel */ code: string; /** * @type {Enums.DocumentType} * @memberof VerifyMultiDocumentModel */ type: Enums.DocumentType; /** * @type {Date} * @memberof VerifyMultiDocumentModel */ verifyTransactionDate?: Date | undefined; /** * @type {number} * @memberof VerifyMultiDocumentModel */ verifyTotalAmount?: number | undefined; /** * @type {number} * @memberof VerifyMultiDocumentModel */ verifyTotalTax?: number | undefined; }