import * as Enums from '../enums/index'; /** * Point-of-Sale Data Request Model * @export * @class PointOfSaleDataRequestModel */ export declare class PointOfSaleDataRequestModel { /** * @type {string} * @memberof PointOfSaleDataRequestModel */ companyCode: string; /** * @type {Date} * @memberof PointOfSaleDataRequestModel */ documentDate?: Date | undefined; /** * @type {Enums.PointOfSaleFileType} * @memberof PointOfSaleDataRequestModel */ responseType?: Enums.PointOfSaleFileType | undefined; /** * @type {string[]} * @memberof PointOfSaleDataRequestModel */ taxCodes?: string[] | undefined; /** * @type {string[]} * @memberof PointOfSaleDataRequestModel */ itemCodes?: string[] | undefined; /** * @type {string[]} * @memberof PointOfSaleDataRequestModel */ locationCodes?: string[] | undefined; /** * @type {boolean} * @memberof PointOfSaleDataRequestModel */ includeJurisCodes?: boolean | undefined; /** * @type {Enums.PointOfSalePartnerId} * @memberof PointOfSaleDataRequestModel */ partnerId?: Enums.PointOfSalePartnerId | undefined; }