import { ApiUserVM } from './apiUserVM'; import { RecipientTypeVM } from './recipientTypeVM'; export interface RecipientVM { id?: number; message_id?: number; first_name?: string; last_name?: string; email?: string; seen?: boolean; delivered?: boolean; messageRecipientType?: RecipientTypeVM; recipient_id?: number; user?: ApiUserVM; can_update?: boolean; can_delete?: boolean; }