more-xrm
Version:
Create more applications using the Microsoft Dynamics Xrm platform, enables querying the dynamics data model from any application.
18 lines (17 loc) • 764 B
TypeScript
import { EntityMetadata } from "./EntityMetadata";
export interface EntityAttributeMetadata extends EntityMetadata {
Attributes: AttributeMetadata[];
}
export interface LookupAttributeMetadata extends AttributeMetadata {
LookupAttributes?: AttributeMetadata[];
LookupEntityName?: string;
LookupSchemaName?: string;
}
export interface AttributeMetadata {
LogicalName: string;
DisplayName: string;
Type: AttributeTypeCode;
IsCustomAttribute?: boolean;
}
export declare type AttributeTypeCode = 'BigInt' | 'Boolean' | 'Customer' | 'DateTime' | 'Decimal' | 'Double' | 'Integer' | 'Lookup' | 'Memo' | 'Money' | 'PartyList' | 'Picklist' | 'State' | 'Status' | 'String';
export declare const AttributeTypeCodes: string[];