Type Alias ConversationSchema

ConversationSchema: {
    id: string;
    contactId: string;
    locationId: string;
    lastMessageBody: string;
    lastMessageType: ConversationMessageTypeString;
    type: ConversationType;
    unreadCount: number;
    fullName: string;
    contactName: string;
    email: string;
    phone: string;
}

Type declaration