@fullstory/server-api-client
Version:
The official FullStory server API client SDK for NodeJS.
19 lines (18 loc) • 641 B
TypeScript
/**
* This file is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Generated from schema: fullstory.v2.events.Context
* Do not edit manually.
*/
import { BrowserContext } from '../events/BrowserContext';
import { DeviceContext } from '../events/DeviceContext';
import { LocationContext } from '../events/LocationContext';
import { MobileContext } from '../events/MobileContext';
/**
* @interface Context The context in which the events are attached to.
*/
export interface Context {
'browser'?: BrowserContext;
'mobile'?: MobileContext;
'device'?: DeviceContext;
'location'?: LocationContext;
}