@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
21 lines (20 loc) • 1.63 kB
TypeScript
import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { BatchInputBlogAuthor } from '../models/BatchInputBlogAuthor';
import { BatchInputJsonNode } from '../models/BatchInputJsonNode';
import { BatchInputString } from '../models/BatchInputString';
import { BatchResponseBlogAuthor } from '../models/BatchResponseBlogAuthor';
import { BatchResponseBlogAuthorWithErrors } from '../models/BatchResponseBlogAuthorWithErrors';
export declare class BatchApiRequestFactory extends BaseAPIRequestFactory {
archiveBatch(batchInputString: BatchInputString, _options?: Configuration): Promise<RequestContext>;
createBatch(batchInputBlogAuthor: BatchInputBlogAuthor, _options?: Configuration): Promise<RequestContext>;
readBatch(batchInputString: BatchInputString, archived?: boolean, _options?: Configuration): Promise<RequestContext>;
updateBatch(batchInputJsonNode: BatchInputJsonNode, archived?: boolean, _options?: Configuration): Promise<RequestContext>;
}
export declare class BatchApiResponseProcessor {
archiveBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<void>>;
createBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<BatchResponseBlogAuthor | BatchResponseBlogAuthorWithErrors>>;
readBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<BatchResponseBlogAuthor | BatchResponseBlogAuthorWithErrors>>;
updateBatchWithHttpInfo(response: ResponseContext): Promise<HttpInfo<BatchResponseBlogAuthor | BatchResponseBlogAuthorWithErrors>>;
}