endTime = $endTime; } /** * @return string */ public function getEndTime() { return $this->endTime; } /** * Optional. The number of times this offer can be redeemed. If unset or set * to 0, allows for unlimited offer redemptions. Otherwise must be a number * between 1 and 50 inclusive. * * @param string $redemptionLimit */ public function setRedemptionLimit($redemptionLimit) { $this->redemptionLimit = $redemptionLimit; } /** * @return string */ public function getRedemptionLimit() { return $this->redemptionLimit; } /** * Time when the offer will start being available. * * @param string $startTime */ public function setStartTime($startTime) { $this->startTime = $startTime; } /** * @return string */ public function getStartTime() { return $this->startTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(OneTimeProductDiscountedOffer::class, 'Google_Service_AndroidPublisher_OneTimeProductDiscountedOffer');