UNPKG

xrm-mock

Version:

A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.

26 lines (25 loc) 804 B
/// <reference types="xrm" /> export declare class OrganizationSettingsMock implements Xrm.OrganizationSettings { baseCurrencyId: string; defaultCountryCode: string; isAutoSaveEnabled: boolean; languageId: number; organizationId: string; uniqueName: string; useSkypeProtocol: boolean; baseCurrency: Xrm.LookupValue; attributes: any; organizationGeo: string; constructor(components: IOrganizationSettingsComponents); } export interface IOrganizationSettingsComponents { baseCurrencyId?: string; defaultCountryCode?: string; isAutoSaveEnabled?: boolean; languageId?: number; organizationId?: string; uniqueName?: string; useSkypeProtocol?: boolean; baseCurrency?: Xrm.LookupValue; attributes?: any; }