UNPKG

@hubspot/api-client

Version:

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

11 lines (10 loc) 758 B
import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CollectionResponsePublicAuditLog } from '../models/CollectionResponsePublicAuditLog'; export declare class BasicApiRequestFactory extends BaseAPIRequestFactory { cmsAuditLogsV3(after?: string, before?: string, eventType?: Array<string>, limit?: number, objectId?: Array<string>, objectType?: Array<string>, sort?: Array<string>, userId?: Array<string>, _options?: Configuration): Promise<RequestContext>; } export declare class BasicApiResponseProcessor { cmsAuditLogsV3WithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponsePublicAuditLog>>; }