@etsoo/smarterp-crm
Version:
TypeScript APIs for SmartERP Customer Relationship Management (CRM)
31 lines (30 loc) • 481 B
TypeScript
import { IdentityTypeFlags } from "@etsoo/appscript";
/**
* Identity type data
* 身份类型数据
*/
export type IdentityTypeData = {
/**
* Identity type
*/
identityType: IdentityTypeFlags;
/**
* Is organization
*/
isOrg: boolean;
};
/**
* Contact item
* 联系人项
*/
export type ContactItem = IdentityTypeData & {
/**
* Id
*/
id: number;
/**
* Name
*/
name: string;
preferredName?: string;
};