UNPKG

@hubspot/api-client

Version:

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

14 lines (13 loc) 940 B
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { PublicBatchMigrationMapping } from '../models/PublicBatchMigrationMapping'; import { PublicMigrationMapping } from '../models/PublicMigrationMapping'; export declare class MappingApiRequestFactory extends BaseAPIRequestFactory { translateLegacyListIdToListId(legacyListId?: string, _options?: Configuration): Promise<RequestContext>; translateLegacyListIdToListIdBatch(requestBody: Array<string>, _options?: Configuration): Promise<RequestContext>; } export declare class MappingApiResponseProcessor { translateLegacyListIdToListIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<PublicMigrationMapping>>; translateLegacyListIdToListIdBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<PublicBatchMigrationMapping>>; }