/** * Represents a single tax rate item * @export * @class RateItemModel */ export declare class RateItemModel { /** * @type {number} * @memberof RateItemModel */ rate?: number | undefined; /** * @type {string} * @memberof RateItemModel */ displayName?: string | undefined; /** * @type {string} * @memberof RateItemModel */ taxName?: string | undefined; /** * @type {string} * @memberof RateItemModel */ jurisCode?: string | undefined; /** * @type {string} * @memberof RateItemModel */ jurisName?: string | undefined; /** * @type {string} * @memberof RateItemModel */ jurisdictionTypeId?: string | undefined; /** * @type {string} * @memberof RateItemModel */ country?: string | undefined; /** * @type {string} * @memberof RateItemModel */ rateTypeId?: string | undefined; /** * @type {string} * @memberof RateItemModel */ taxTypeGroupId?: string | undefined; /** * @type {string} * @memberof RateItemModel */ taxSubType?: string | undefined; }