import { ApiUserVM } from './apiUserVM'; export interface PromotionMemberVM { promotion_id?: number; email?: string; first_name?: string; last_name?: string; registered?: boolean; id?: string; member_code?: string; sales?: number; payout_amount?: number; api_user_id?: number; apiUser?: ApiUserVM; can_update?: boolean; can_delete?: boolean; }