UNPKG

facturapi

Version:

Librería oficial de Facturapi. Crea CFDIs timbrados y enviados al SAT, XML y PDF

17 lines (16 loc) 375 B
import type { LocalTax, Tax } from './common'; export interface Product { id: string; organization: string; livemode: boolean; product_key: string; description: string; price: number; created_at: Date; tax_included: boolean; taxability: string; taxes: Tax[]; local_taxes: LocalTax[]; unit_key: string; unit_name: string; }