UNPKG

@hubspot/api-client

Version:

NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files

13 lines (12 loc) 875 B
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { BatchInputTimelineEvent } from '../models/BatchInputTimelineEvent'; import { BatchResponseTimelineEventResponse } from '../models/BatchResponseTimelineEventResponse'; import { BatchResponseTimelineEventResponseWithErrors } from '../models/BatchResponseTimelineEventResponseWithErrors'; export declare class BatchApiRequestFactory extends BaseAPIRequestFactory { createBatch(batchInputTimelineEvent: BatchInputTimelineEvent, _options?: Configuration): Promise<RequestContext>; } export declare class BatchApiResponseProcessor { createBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<BatchResponseTimelineEventResponse | BatchResponseTimelineEventResponseWithErrors>>; }