UNPKG

@hubspot/api-client

Version:

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

14 lines (13 loc) 1.02 kB
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { MarketingEventCompleteRequestParams } from '../models/MarketingEventCompleteRequestParams'; import { MarketingEventDefaultResponse } from '../models/MarketingEventDefaultResponse'; export declare class EventStatusApiRequestFactory extends BaseAPIRequestFactory { cancel(externalEventId: string, externalAccountId: string, _options?: Configuration): Promise<RequestContext>; complete(externalEventId: string, externalAccountId: string, marketingEventCompleteRequestParams: MarketingEventCompleteRequestParams, _options?: Configuration): Promise<RequestContext>; } export declare class EventStatusApiResponseProcessor { cancelWithHttpInfo(response: ResponseContext): Promise<HttpInfo<MarketingEventDefaultResponse>>; completeWithHttpInfo(response: ResponseContext): Promise<HttpInfo<MarketingEventDefaultResponse>>; }