import { TaxType } from '../taxes';

export class TaxDetails {
  tax_type?: TaxType;
  tax_code?: string;
  /** @description Tax percentage, e.g. 20, 23.7 */
  tax_percentage?: number;
}
