job_id = $job_id; $this->source_file_path = $source_file_path; $this->local_file_path = $local_file_path; } /** * @return mixed */ public function job_id() { return $this->job_id; } /** * Retrieve the local file path, where the backup have to be downloaded * * @return string */ public function local_file_path() { return $this->local_file_path; } /** * Retrieve the remote/source file path of the backup * * @return string */ public function source_file_path() { return $this->source_file_path; } }