@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
14 lines (13 loc) • 942 B
TypeScript
import { BaseAPIRequestFactory } from './baseapi';
import { Configuration } from '../configuration';
import { RequestContext, ResponseContext, HttpInfo } from '../http/http';
import { CollectionResponsePublicOwnerForwardPaging } from '../models/CollectionResponsePublicOwnerForwardPaging';
import { PublicOwner } from '../models/PublicOwner';
export declare class BasicApiRequestFactory extends BaseAPIRequestFactory {
crmV3Owners(after?: string, archived?: boolean, email?: string, limit?: number, _options?: Configuration): Promise<RequestContext>;
getById(ownerId: number, archived?: boolean, idProperty?: 'id' | 'userId', _options?: Configuration): Promise<RequestContext>;
}
export declare class BasicApiResponseProcessor {
crmV3OwnersWithHttpInfo(response: ResponseContext): Promise<HttpInfo<CollectionResponsePublicOwnerForwardPaging>>;
getByIdWithHttpInfo(response: ResponseContext): Promise<HttpInfo<PublicOwner>>;
}