/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { TaxDataTaxRateExtensionInterface } from './taxDataTaxRateExtensionInterface'; import { TaxDataTaxRateTitleInterface } from './taxDataTaxRateTitleInterface'; /** * Tax rate interface. */ export interface TaxDataTaxRateInterface { /** * Id */ id?: number; /** * Country id */ taxCountryId: string; /** * Region id */ taxRegionId?: number; /** * Region name */ regionName?: string; /** * Postcode */ taxPostcode?: string; /** * Zip is range */ zipIsRange?: number; /** * Zip range from */ zipFrom?: number; /** * Zip range to */ zipTo?: number; /** * Tax rate in percentage */ rate: number; /** * Tax rate code */ code: string; /** * Tax rate titles */ titles?: Array; extensionAttributes?: TaxDataTaxRateExtensionInterface; }