@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
14 lines (13 loc) • 354 B
TypeScript
export declare class OrganizationEntity {
constructor(entity: any);
/** Entity key (used in the experience and preview model)
* @pattern ^[A-Za-z0-9-_]{1,30}$
*/
key: string;
/** Entity name */
name: string;
/**
* The data map of the values of the dataPoints defined at the organization.
*/
data: object;
}