import { Tenant } from 'src/types/tenant'; import { Subjects } from '../subjects'; import { LiveType } from '../../types/liveType'; export interface PaidLiveStartedEvent { subject: Subjects.PaidLiveStarted; data: { tenant: Tenant.PrivateShow; liveId: string; consumerId: string; streamerId: string; streamerNickName: string; streamerProfilePhoto: string; liveType: LiveType; startedAt: string; pricePerMinute: number; }; }