sc-cobre-facil
Version:
Biblioteca TypeScript para consumir a API da Cobre Fácil
16 lines • 631 B
TypeScript
import { NFseIss } from "./NFseIss";
/**
* Represents a Nota Fiscal de Serviço Eletrônica (NFse) interface.
*
* @property {string} inscricao_estadual - The state registration number associated with the NFse.
* @property {number} responsavel_retencao - Indicates who is responsible for tax withholding:
* - `1`: Tomador (Service Taker)
* - `2`: Intermediário (Intermediary)
* @property {NFseIss} iss - The ISS (Imposto Sobre Serviços) details associated with the NFse.
*/
export interface NFse {
inscricao_estadual: string;
responsavel_retencao: number;
iss: NFseIss;
}
//# sourceMappingURL=NFse.d.ts.map