UNPKG

dawn-interfaces

Version:

Dawn application interfaces

21 lines (20 loc) 470 B
export declare enum EClientType { buyer = "buyer", seller = "seller", buyerAndSeller = "buyerAndSeller" } export declare enum EClientTemperature { hot = "hot", warm = "warm", cold = "cold" } export interface IClientNotes { clientId: string; lastLoginAt: Date; updatedAt: Date; updatedById: string; notes?: string; clientType: EClientType; clientTemperature: EClientTemperature; assignedAgencyId?: string | null; }