UNPKG

falcotura-atv-sdk

Version:

Librería (SDK) de Javascript/NodeJS para acceder al API de Administración Tributaria Virtual (ATV) del Ministerio de Hacienda.

18 lines (17 loc) 472 B
export type ReferenceInformationProps = { docType: string; refNumber: string; issueDate: Date; code: string; reason: string; }; export declare class ReferenceInformation { private props; constructor(props: ReferenceInformationProps); get docType(): string; get refNumber(): string; get issueDate(): Date; get code(): string; get reason(): string; static create(props: ReferenceInformationProps): ReferenceInformation; }