@fullstory/server-api-client
Version:
The official FullStory server API client SDK for NodeJS.
18 lines (17 loc) • 636 B
TypeScript
/**
* This file is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Generated from schema: fullstory.v2.events.CreateBatchEventsImportJobRequest
* Do not edit manually.
*/
import { CreateEventRequest } from '../events/CreateEventRequest';
import { SharedData } from '../events/SharedData';
/**
* @interface CreateBatchEventsImportJobRequest The request payloads contains the list of events to be imported
*/
export interface CreateBatchEventsImportJobRequest {
/**
* The list of event requests that should be imported
*/
'requests': Array<CreateEventRequest>;
'shared'?: SharedData;
}