totalDuration; } /** * For unified access, used in frontend. * * @return int */ public function getDuration(): int { return $this->totalDuration; } public function getTotalDuration(): int { return $this->totalDuration; } public function setTotalDuration(int $totalDuration): void { $this->totalDuration = $totalDuration; } /** * For unified access, used in frontend. * * @return float */ public function getRate(): float { return $this->totalRate; } public function getTotalRate(): float { return $this->totalRate; } public function setTotalRate(float $totalRate): void { $this->totalRate = $totalRate; } /** * For unified access, used in frontend. * * @return float */ public function getInternalRate(): float { return $this->totalInternalRate; } public function getTotalInternalRate(): float { return $this->totalInternalRate; } public function setTotalInternalRate(float $totalInternalRate): void { $this->totalInternalRate = $totalInternalRate; } }