UNPKG

xrm-mock

Version:

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

17 lines (16 loc) 554 B
/// <reference types="xrm" /> export declare class RelationshipMock implements Xrm.Navigation.Relationship { attributeName: string; name: string; navigationPropertyName?: string; relationshipType?: XrmEnum.RelationshipType; roleType?: XrmEnum.RoleType; constructor(components: IRelationshipComponents); } export interface IRelationshipComponents { attributeName: string; name: string; navigationPropertyName?: string; relationshipType?: XrmEnum.RelationshipType; roleType?: XrmEnum.RoleType; }