xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
19 lines • 916 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrganizationSettingsMock = void 0;
var OrganizationSettingsMock = /** @class */ (function () {
function OrganizationSettingsMock(components) {
this.baseCurrencyId = components.baseCurrencyId;
this.defaultCountryCode = components.defaultCountryCode;
this.isAutoSaveEnabled = components.isAutoSaveEnabled;
this.languageId = components.languageId;
this.organizationId = components.organizationId;
this.uniqueName = components.uniqueName;
this.useSkypeProtocol = components.useSkypeProtocol;
this.baseCurrency = components.baseCurrency;
this.attributes = components.attributes;
}
return OrganizationSettingsMock;
}());
exports.OrganizationSettingsMock = OrganizationSettingsMock;
//# sourceMappingURL=organizationsettings.mock.js.map