UNPKG

rijksmuseum-typescript-api

Version:

Rijksmuseum API Wrapper made with Typescript and RxJS

17 lines (16 loc) 656 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var SearchCriteria = /** @class */ (function () { function SearchCriteria(page, page_result_count, search_term, type) { if (page === void 0) { page = 0; } if (page_result_count === void 0) { page_result_count = 25; } if (search_term === void 0) { search_term = ''; } if (type === void 0) { type = ''; } this.page = page; this.page_result_count = page_result_count; this.search_term = search_term; this.type = type; } return SearchCriteria; }()); exports.SearchCriteria = SearchCriteria;