annualLoanPayment = $annualLoanPayment; } /** * @return Money */ public function getAnnualLoanPayment() { return $this->annualLoanPayment; } /** * @param float */ public function setLoanInterestRate($loanInterestRate) { $this->loanInterestRate = $loanInterestRate; } /** * @return float */ public function getLoanInterestRate() { return $this->loanInterestRate; } /** * @param Money */ public function setRebateValue(Money $rebateValue) { $this->rebateValue = $rebateValue; } /** * @return Money */ public function getRebateValue() { return $this->rebateValue; } /** * @param SavingsOverTime */ public function setSavings(SavingsOverTime $savings) { $this->savings = $savings; } /** * @return SavingsOverTime */ public function getSavings() { return $this->savings; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FinancedPurchaseSavings::class, 'Google_Service_Solar_FinancedPurchaseSavings');