refundId = $refundId; } /** * @return string */ public function getRefundId() { return $this->refundId; } /** * Required. The pre-tax amount of the partial refund. Should be less than the * remaining pre-tax amount of the transaction. * * @param Price $refundPreTaxAmount */ public function setRefundPreTaxAmount(Price $refundPreTaxAmount) { $this->refundPreTaxAmount = $refundPreTaxAmount; } /** * @return Price */ public function getRefundPreTaxAmount() { return $this->refundPreTaxAmount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PartialRefund::class, 'Google_Service_AndroidPublisher_PartialRefund');