UNPKG

@hubspot/api-client

Version:

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

12 lines (11 loc) 787 B
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CollectionResponseObjectSchemaNoPaging } from '../models/CollectionResponseObjectSchemaNoPaging'; import { ObjectSchemaBatchReadRequest } from '../models/ObjectSchemaBatchReadRequest'; export declare class BatchApiRequestFactory extends BaseAPIRequestFactory { crmObjectSchemasV3SchemasBatchRead(objectSchemaBatchReadRequest: ObjectSchemaBatchReadRequest, _options?: Configuration): Promise<RequestContext>; } export declare class BatchApiResponseProcessor { crmObjectSchemasV3SchemasBatchReadWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponseObjectSchemaNoPaging>>; }