/** * @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; }