chargeReturnShippingFee = $chargeReturnShippingFee; } /** * @return bool */ public function getChargeReturnShippingFee() { return $this->chargeReturnShippingFee; } /** * @param MonetaryAmount */ public function setMaxReturnShippingFee(MonetaryAmount $maxReturnShippingFee) { $this->maxReturnShippingFee = $maxReturnShippingFee; } /** * @return MonetaryAmount */ public function getMaxReturnShippingFee() { return $this->maxReturnShippingFee; } /** * @param MonetaryAmount */ public function setRefundableItemsTotalAmount(MonetaryAmount $refundableItemsTotalAmount) { $this->refundableItemsTotalAmount = $refundableItemsTotalAmount; } /** * @return MonetaryAmount */ public function getRefundableItemsTotalAmount() { return $this->refundableItemsTotalAmount; } /** * @param MonetaryAmount */ public function setRefundableShippingAmount(MonetaryAmount $refundableShippingAmount) { $this->refundableShippingAmount = $refundableShippingAmount; } /** * @return MonetaryAmount */ public function getRefundableShippingAmount() { return $this->refundableShippingAmount; } /** * @param MonetaryAmount */ public function setTotalRefundedAmount(MonetaryAmount $totalRefundedAmount) { $this->totalRefundedAmount = $totalRefundedAmount; } /** * @return MonetaryAmount */ public function getTotalRefundedAmount() { return $this->totalRefundedAmount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReturnPricingInfo::class, 'Google_Service_ShoppingContent_ReturnPricingInfo');