Esempio n. 1
0
 /// <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());
 }
Esempio n. 2
0
 /// <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());
 }
Esempio n. 3
0
 /// <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());
 }