/** * Represents a tax code classification request output model * @export * @class ItemTaxCodeClassificationRequestOutputModel */ export declare class ItemTaxCodeClassificationRequestOutputModel { /** * @type {number} * @memberof ItemTaxCodeClassificationRequestOutputModel */ requestId?: number | undefined; /** * @type {number} * @memberof ItemTaxCodeClassificationRequestOutputModel */ companyId?: number | undefined; /** * @type {string} * @memberof ItemTaxCodeClassificationRequestOutputModel */ request?: string | undefined; /** * @type {string} * @memberof ItemTaxCodeClassificationRequestOutputModel */ status?: string | undefined; /** * @type {string} * @memberof ItemTaxCodeClassificationRequestOutputModel */ requestType?: string | undefined; /** * @type {number} * @memberof ItemTaxCodeClassificationRequestOutputModel */ createdUserId?: number | undefined; /** * @type {Date} * @memberof ItemTaxCodeClassificationRequestOutputModel */ createdDate?: Date | undefined; /** * @type {Date} * @memberof ItemTaxCodeClassificationRequestOutputModel */ modifiedDate?: Date | undefined; }