falcotura-atv-sdk
Version:
Librería (SDK) de Javascript/NodeJS para acceder al API de Administración Tributaria Virtual (ATV) del Ministerio de Hacienda.
22 lines • 683 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FullConsecutive = void 0;
const genClave_1 = require("../../lib/genClave");
class FullConsecutive {
get value() {
return (0, genClave_1.consecutivoStr)({
tipoDocKey: this.props.documentType,
sucursal: this.props.branch,
terminal: this.props.terminal,
consecutivo: this.props.consecutiveIdentifier
});
}
constructor(props) {
this.props = props;
}
static create(props) {
return new FullConsecutive(props);
}
}
exports.FullConsecutive = FullConsecutive;
//# sourceMappingURL=FullConsecutive.js.map