UNPKG

more-xrm

Version:

Create more applications using the Microsoft Dynamics Xrm platform, enables querying the dynamics data model from any application.

9 lines (8 loc) 259 B
import { AttributeMetadata } from "./AttributeMetadata"; export interface OptionSetAttributeMetadata extends AttributeMetadata { PicklistOptions?: OptionSetMetadata[]; } export interface OptionSetMetadata { Label: string; Value: number; }