@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
22 lines (21 loc) • 846 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserManagementQuery = void 0;
class UserManagementQuery {
constructor(searchText, userTypeId, providerId, pageNumber, pageSize, sortColumn, sortDesc, scope, disabled, timeValid, language, scopeType, businessProfileId) {
this.searchText = searchText;
this.userTypeId = userTypeId;
this.providerId = providerId;
this.pageNumber = pageNumber;
this.pageSize = pageSize;
this.sortColumn = sortColumn;
this.sortDesc = sortDesc;
this.scope = scope;
this.disabled = disabled;
this.timeValid = timeValid;
this.language = language;
this.scopeType = scopeType;
this.businessProfileId = businessProfileId;
}
}
exports.UserManagementQuery = UserManagementQuery;