import { CountryCoefficientsRequestModel } from "./CountryCoefficientsRequestModel"; /** * Represents the Country coefficients request input 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 CountryCoefficientsRequestEntity */ export declare class CountryCoefficientsRequestEntity { /** * @type {number} * @memberof CountryCoefficientsRequestEntity */ accountId: number; /** * @type {CountryCoefficientsRequestModel[]} * @memberof CountryCoefficientsRequestEntity */ coefficientDetails: CountryCoefficientsRequestModel[]; }