xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
13 lines • 440 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LookupValueMock = void 0;
var LookupValueMock = /** @class */ (function () {
function LookupValueMock(id, entityType, name) {
this.id = id;
this.entityType = entityType;
this.name = name;
}
return LookupValueMock;
}());
exports.LookupValueMock = LookupValueMock;
//# sourceMappingURL=lookupvalue.mock.js.map