@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
23 lines (22 loc) • 1.17 kB
TypeScript
export * from '../models/BatchInputPublicObjectId';
export * from '../models/BatchResponseDealToDealSplits';
export * from '../models/BatchResponseDealToDealSplitsWithErrors';
export * from '../models/DealToDealSplits';
export * from '../models/ErrorDetail';
export * from '../models/ModelError';
export * from '../models/PublicDealSplitInput';
export * from '../models/PublicDealSplitsBatchCreateRequest';
export * from '../models/PublicDealSplitsCreateRequest';
export * from '../models/PublicObjectId';
export * from '../models/SimplePublicObject';
export * from '../models/StandardError';
export * from '../models/ValueWithTimestamp';
export declare class ObjectSerializer {
static findCorrectType(data: any, expectedType: string): any;
static serialize(data: any, type: string, format: string): any;
static deserialize(data: any, type: string, format: string): any;
static normalizeMediaType(mediaType: string | undefined): string | undefined;
static getPreferredMediaType(mediaTypes: Array<string>): string;
static stringify(data: any, mediaType: string): string;
static parse(rawData: string, mediaType: string | undefined): any;
}