UNPKG

@hubspot/api-client

Version:

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

14 lines (13 loc) 1.17 kB
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CollectionResponseExternalUnifiedEvent } from '../models/CollectionResponseExternalUnifiedEvent'; import { VisibleExternalEventTypeNames } from '../models/VisibleExternalEventTypeNames'; export declare class BasicApiRequestFactory extends BaseAPIRequestFactory { eventsV3Events(after?: string, before?: string, eventType?: string, id?: Array<string>, limit?: number, objectId?: number, objectPropertyPropname?: any, objectType?: string, occurredAfter?: Date, occurredBefore?: Date, properties?: Array<string>, propertyPropname?: any, sort?: Array<string>, _options?: Configuration): Promise<RequestContext>; eventsV3EventsEventTypes(_options?: Configuration): Promise<RequestContext>; } export declare class BasicApiResponseProcessor { eventsV3EventsWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseExternalUnifiedEvent>>; eventsV3EventsEventTypesWithHttpInfo(response: ResponseContext): Promise<HttpInfo<VisibleExternalEventTypeNames>>; }