/** * 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 CountryCoefficientsEntity */ export declare class CountryCoefficientsEntity { /** * @type {number} * @memberof CountryCoefficientsEntity */ coefficientsId?: number | undefined; /** * @type {number} * @memberof CountryCoefficientsEntity */ accountId?: number | undefined; /** * @type {number} * @memberof CountryCoefficientsEntity */ companyId?: number | undefined; /** * @type {string} * @memberof CountryCoefficientsEntity */ country: string; /** * @type {number} * @memberof CountryCoefficientsEntity */ coefficient?: number | undefined; /** * @type {string} * @memberof CountryCoefficientsEntity */ taxSubTypeId?: string | undefined; /** * @type {string} * @memberof CountryCoefficientsEntity */ currencyCode?: string | undefined; /** * @type {number} * @memberof CountryCoefficientsEntity */ unitOfBasisId?: number | undefined; /** * @type {boolean} * @memberof CountryCoefficientsEntity */ isApplicable?: boolean | undefined; /** * @type {Date} * @memberof CountryCoefficientsEntity */ modifiedDate?: Date | undefined; /** * @type {Date} * @memberof CountryCoefficientsEntity */ startDate?: Date | undefined; /** * @type {Date} * @memberof CountryCoefficientsEntity */ endDate?: Date | undefined; /** * @type {number} * @memberof CountryCoefficientsEntity */ modifiedUserId?: number | undefined; /** * @type {Date} * @memberof CountryCoefficientsEntity */ createdDate?: Date | undefined; /** * @type {number} * @memberof CountryCoefficientsEntity */ createdUserId?: number | undefined; }