@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
59 lines (58 loc) • 1.67 kB
TypeScript
import { PublicCrmSearchRequest } from '../models/PublicCrmSearchRequest';
export declare class PublicExportViewRequest {
'exportType': PublicExportViewRequestExportTypeEnum;
'format': PublicExportViewRequestFormatEnum;
'exportName': string;
'objectProperties': Array<string>;
'associatedObjectType'?: string;
'objectType': string;
'language': PublicExportViewRequestLanguageEnum;
'exportInternalValuesOptions': Array<PublicExportViewRequestExportInternalValuesOptionsEnum>;
'overrideAssociatedObjectsPerDefinitionPerRowLimit': boolean;
'publicCrmSearchRequest'?: PublicCrmSearchRequest;
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 PublicExportViewRequestExportTypeEnum {
View = "VIEW"
}
export declare enum PublicExportViewRequestFormatEnum {
Xls = "XLS",
Xlsx = "XLSX",
Csv = "CSV"
}
export declare enum PublicExportViewRequestLanguageEnum {
En = "EN",
De = "DE",
Es = "ES",
Fr = "FR",
Ja = "JA",
Nl = "NL",
PtBr = "PT_BR",
It = "IT",
Pl = "PL",
Sv = "SV",
Fi = "FI",
ZhTw = "ZH_TW",
DaDk = "DA_DK",
No = "NO"
}
export declare enum PublicExportViewRequestExportInternalValuesOptionsEnum {
Names = "NAMES",
Values = "VALUES"
}