intercom-client
Version:
Official Node bindings to the Intercom API
23 lines (22 loc) • 531 B
text/typescript
/**
* @example
* {
* job_identifier: "job_identifier",
* app_id: "app_id",
* client_id: "client_id"
* }
*
* @example
* {
* job_identifier: "job_identifier",
* app_id: "app_id",
* client_id: "client_id"
* }
*/
export interface ExportReportingDataRequest {
/** Unique identifier of the job. */
job_identifier: string;
/** The Intercom defined code of the workspace the company is associated to. */
app_id: string;
client_id: string;
}