UNPKG

@hubspot/api-client

Version:

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

44 lines (43 loc) 1.19 kB
export declare class PublicExportResponse { 'createdAt': Date; 'exportName'?: string; 'exportState': PublicExportResponseExportStateEnum; 'exportType': PublicExportResponseExportTypeEnum; 'id': string; 'objectProperties': Array<string>; 'objectType': string; 'recordCount'?: number; 'updatedAt': Date; 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 PublicExportResponseExportStateEnum { Canceled = "CANCELED", Conflict = "CONFLICT", Deferred = "DEFERRED", Deleted = "DELETED", Done = "DONE", Enqueued = "ENQUEUED", Failed = "FAILED", PendingApproval = "PENDING_APPROVAL", Processing = "PROCESSING" } export declare enum PublicExportResponseExportTypeEnum { List = "LIST", View = "VIEW" }