fileNames = $fileNames; } /** * @return string[] */ public function getFileNames() { return $this->fileNames; } /** * The number of objects processed during the download operation. * * @param int $processedObjectCount */ public function setProcessedObjectCount($processedObjectCount) { $this->processedObjectCount = $processedObjectCount; } /** * @return int */ public function getProcessedObjectCount() { return $this->processedObjectCount; } /** * The number of new feedback labels downloaded during this operation. * Different from "processed" because some labels might not be downloaded * because an error. * * @param int $successfulDownloadCount */ public function setSuccessfulDownloadCount($successfulDownloadCount) { $this->successfulDownloadCount = $successfulDownloadCount; } /** * @return int */ public function getSuccessfulDownloadCount() { return $this->successfulDownloadCount; } /** * Total number of files written to the provided Cloud Storage bucket. * * @param int $totalFilesWritten */ public function setTotalFilesWritten($totalFilesWritten) { $this->totalFilesWritten = $totalFilesWritten; } /** * @return int */ public function getTotalFilesWritten() { return $this->totalFilesWritten; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadataDownloadStats::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadataDownloadStats');