UNPKG

@hubspot/api-client

Version:

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

38 lines (37 loc) 1.06 kB
import { BlogPost } from '../models/BlogPost'; import { StandardError } from '../models/StandardError'; export declare class BatchResponseBlogPostWithErrors { 'completedAt': Date; 'numErrors'?: number; 'requestedAt'?: Date; 'startedAt': Date; 'links'?: { [key: string]: string; }; 'results': Array<BlogPost>; 'errors'?: Array<StandardError>; 'status': BatchResponseBlogPostWithErrorsStatusEnum; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare enum BatchResponseBlogPostWithErrorsStatusEnum { Pending = "PENDING", Processing = "PROCESSING", Canceled = "CANCELED", Complete = "COMPLETE" }