whatsapp-crm-common
Version:
Componentes compartidos para servicios de WhatsApp CRM - Common utilities and types for WhatsApp CRM system
33 lines • 729 B
TypeScript
export interface Contact {
id: number;
jid: string;
lid: string | null;
name: string | null;
notify: string | null;
verified_name: string | null;
img_url: string | null;
status: string | null;
tenantId: string;
agentId: string;
created_at: Date;
updated_at: Date;
}
export interface CreateContactDTO {
jid: string;
tenantId: string;
agentId: string;
lid?: string;
name?: string;
notify?: string;
verified_name?: string;
img_url?: string;
status?: string;
}
export interface UpdateContactDTO {
name?: string;
notify?: string;
verified_name?: string;
img_url?: string;
status?: string;
}
//# sourceMappingURL=IContacts.d.ts.map