| 1234567891011121314 |
- // libs/common/src/events/ads-click-event.dto.ts
- export interface AdsClickEventPayload {
- adsId: string; // Ads ObjectId
- adType: string; // BANNER, STARTUP, etc.
- channelId: string; // Channel ObjectId
- adsModuleId: string; // AdsModule ObjectId
- uid: string; // User device ID from JWT
- ip: string; // Client IP
- appVersion?: string; // App version
- os?: string; // iOS / Android / Web
- machine?: string; // Device info: brand and system version
- clickAt: number | bigint; // epoch millis; will be stored as BigInt in Mongo
- }
|