UNPKG

xrm-mock

Version:

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

27 lines (26 loc) 746 B
/// <reference types="xrm" /> export declare class OptionMetadataMock implements Xrm.Metadata.OptionMetadata { Value: number; Color: string; IsManaged: boolean; ExternalValue: any; MetadataId: string; HasChanged: boolean; State: number; TransitionData: any; Label: Xrm.Metadata.Label; Description: Xrm.Metadata.Label; constructor(components: IOptionMetadataComponents); } export interface IOptionMetadataComponents { Value?: number; Color?: string; IsManaged?: boolean; ExternalValue?: any; MetadataId?: string; HasChanged?: boolean; State?: number; TransitionData?: any; Label?: Xrm.Metadata.Label; Description?: Xrm.Metadata.Label; }