@fullstory/server-api-client
Version:
The official FullStory server API client SDK for NodeJS.
24 lines (23 loc) • 803 B
TypeScript
/**
* This file is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Generated from schema: fullstory.v2.events.GetBatchEventsImportsResponse
* Do not edit manually.
*/
import { BatchCreateEventsResponse } from '../events/BatchCreateEventsResponse';
/**
* @interface GetBatchEventsImportsResponse Server response for retrieving batch events imported
*/
export interface GetBatchEventsImportsResponse {
/**
* Page of events import responses for the batch import
*/
'results'?: Array<BatchCreateEventsResponse>;
/**
* Total number of records in this batch import
*/
'total_records'?: string;
/**
* The token that can be used in a subsequent request to fetch the next page of import results
*/
'next_page_token'?: string;
}