@swrve/smarttv-sdk
Version:
Swrve marketing engagement platform SDK for SmartTV OTT devices
16 lines (14 loc) • 370 B
text/typescript
/**
* A batch of events.
*
* Posted as JSON to `{apiUrl}/1/batch`.
*/
import SwrveEvent from "./SwrveEvent";
export default interface IEventBatch {
readonly user?: string;
readonly app_version?: string;
readonly session_token: string;
readonly version: number;
readonly unique_device_id?: string;
readonly data: ReadonlyArray<SwrveEvent>;
}