@etsoo/smarterp-crm
Version:
TypeScript APIs for SmartERP Customer Relationship Management (CRM)
39 lines (33 loc) • 483 B
text/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;
/*
* Preferred name
*/
preferredName?: string;
};