import { ComplianceAggregatedTaxRateModel } from "./ComplianceAggregatedTaxRateModel"; /** * Model for distinct jurisdictions. * @export * @class ComplianceJurisdictionModel */ export declare class ComplianceJurisdictionModel { /** * @type {number} * @memberof ComplianceJurisdictionModel */ taxRegionId?: number | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ stateAssignedCode?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ jurisdictionTypeId?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ name?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ county?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ city?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ region?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ country?: string | undefined; /** * @type {string} * @memberof ComplianceJurisdictionModel */ taxRegionName?: string | undefined; /** * @type {number} * @memberof ComplianceJurisdictionModel */ taxAuthorityId?: number | undefined; /** * @type {ComplianceAggregatedTaxRateModel[]} * @memberof ComplianceJurisdictionModel */ rates?: ComplianceAggregatedTaxRateModel[] | undefined; }