UNPKG

@omnia/fx-models

Version:
28 lines (27 loc) 1.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IdentityQuery = void 0; const Constants_1 = require("../Constants"); const ItemQuery_1 = require("../ItemQuery"); class IdentityQuery extends ItemQuery_1.ItemQuery { constructor(types, searchText, /** * This is user type id or group type id value. */ typeIds, providerIds, excludeTypeIds, emailEnabled, permissionEnabled, scope, tenantIdentityOnly, businessProfileId, scopeType) { super(); this.types = types; this.searchText = searchText; this.typeIds = typeIds; this.providerIds = providerIds; this.excludeTypeIds = excludeTypeIds; this.emailEnabled = emailEnabled; this.permissionEnabled = permissionEnabled; this.scope = scope; this.tenantIdentityOnly = tenantIdentityOnly; this.businessProfileId = businessProfileId; this.scopeType = scopeType; this.itemLimit = Constants_1.Constants.identityQueryItemLimit; } } exports.IdentityQuery = IdentityQuery;