@hubspot/api-client
Version:
NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files
58 lines (57 loc) • 1.56 kB
TypeScript
export declare class PublicExportListRequest {
'exportType': PublicExportListRequestExportTypeEnum;
'format': PublicExportListRequestFormatEnum;
'exportName': string;
'objectProperties': Array<string>;
'associatedObjectType'?: string;
'objectType': string;
'language': PublicExportListRequestLanguageEnum;
'exportInternalValuesOptions': Array<PublicExportListRequestExportInternalValuesOptionsEnum>;
'overrideAssociatedObjectsPerDefinitionPerRowLimit': boolean;
'listId': string;
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 PublicExportListRequestExportTypeEnum {
List = "LIST"
}
export declare enum PublicExportListRequestFormatEnum {
Xls = "XLS",
Xlsx = "XLSX",
Csv = "CSV"
}
export declare enum PublicExportListRequestLanguageEnum {
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 PublicExportListRequestExportInternalValuesOptionsEnum {
Names = "NAMES",
Values = "VALUES"
}