UNPKG

apr-api

Version:

Performing queries on Business Registers Agency of Serbia data. Work in progress, currently searching only by registration number.

19 lines (14 loc) 528 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } var Record = function Record(data) { _classCallCheck(this, Record); this.recordType = data.type; this.registrationNumber = data.regNo; this.businessName = data.businessName; this.detailsLink = data.detailsLink; this.hasDetails = false; }; exports.default = Record;