@fullstory/server-api-client
Version:
The official FullStory server API client SDK for NodeJS.
31 lines (30 loc) • 783 B
TypeScript
/**
* This file is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Generated from schema: fullstory.v2.events.EventData
* Do not edit manually.
*/
import { Context } from '../events/Context';
import { SessionId } from '../events/SessionId';
import { UserId } from '../events/UserId';
import { Schema } from '../varsapi/Schema';
/**
* @interface EventData The event.
*/
export interface EventData {
'user'?: UserId;
'session'?: SessionId;
'context'?: Context;
/**
* The event's name.
*/
'name': string;
/**
* Optional. The event's timestamp, defaults to current time.
*/
'timestamp'?: string;
/**
* Optional. The custom event's payload.
*/
'properties'?: object;
'schema'?: Schema;
}