import { PaymentOrderStatus, PaymentOrderTypes } from '../enums'; import { BaseModel } from './BaseModel'; export interface PaymentOrder extends BaseModel { activityId?: string; companyId?: string; poolActivityId?: string; rewardCampaignId?: string; status?: PaymentOrderStatus; type?: PaymentOrderTypes; value?: number; workerId?: string; }