/** * Represents the Country coefficients model, using which tax rules rates can be modified dynamically for CB transaciotns while applying tax rules in order to reduce the variance for all the transactions at country level. * @export * @class CountryCoefficientsRequestModel */ export declare class CountryCoefficientsRequestModel { /** * @type {string} * @memberof CountryCoefficientsRequestModel */ companyCode: string; /** * @type {string} * @memberof CountryCoefficientsRequestModel */ country: string; /** * @type {number} * @memberof CountryCoefficientsRequestModel */ coefficient: number; /** * @type {string} * @memberof CountryCoefficientsRequestModel */ taxSubTypeId: string; /** * @type {string} * @memberof CountryCoefficientsRequestModel */ currencyCode: string; /** * @type {number} * @memberof CountryCoefficientsRequestModel */ unitOfBasisId: number; /** * @type {boolean} * @memberof CountryCoefficientsRequestModel */ isApplicable: boolean; /** * @type {Date} * @memberof CountryCoefficientsRequestModel */ startDate: Date; /** * @type {Date} * @memberof CountryCoefficientsRequestModel */ endDate: Date; }