/// <summary> /// Method to get the details of a bulk read job performed previously. /// </summary> /// <returns>APIResponse - APIResponse instance of the APIResponse class which holds the API response.</returns> public APIResponse GetBulkReadJobDetails() { return(BulkReadAPIHandler.GetInstance(this).GetBulkReadJobDetails()); }
/// <summary> /// Method download the bulk read job as a CSV file. /// </summary> /// <returns>FileAPIResponse - FileAPIResponse instance of the FileAPIResponse class which holds the response.</returns> public FileAPIResponse DownloadBulkReadResult() { return(BulkReadAPIHandler.GetInstance(this).DownloadBulkReadResult()); }
/// <summary> /// Method to create a bulk read job to export records. /// </summary> /// <returns>APIResponse - APIResponse instance of the APIResponse class which holds the API response.</returns> public APIResponse CreateBulkReadJob() { return(BulkReadAPIHandler.GetInstance(this).CreateBulkReadJob()); }