import { MetaDataAtumInterface } from './meta-data-atum.interface'; export interface TaxClassAtumInterface { slug: string; name: string; taxRates?: TaxRateAtumInterface[]; } export interface TaxLineAtumInterface { id?: number; rate_code?: string; rate_id?: number; label?: string; compound?: boolean; tax_total?: string; shipping_tax_total?: string; rate_percent?: number; meta_data?: MetaDataAtumInterface[]; } export interface TaxRateAtumInterface { id: number; country: string; state: string; postcode: string; city: string; rate: string; name: string; priority: number; compound: boolean; shipping: boolean; class: string; order?: number; }