linkedOrderId = $linkedOrderId; } /** * @return string */ public function getLinkedOrderId() { return $this->linkedOrderId; } /** * Represent the original offer phase from the purchased the line item if the * proration period contains any of them. For example, a proration period from * CHARGE_FULL_PRICE plan change may merge the 1st offer phase of the * subscription offer of the new product user purchased. In this case, the * original offer phase will be set here. * * Accepted values: OFFER_PHASE_UNSPECIFIED, BASE, INTRODUCTORY, FREE_TRIAL * * @param self::ORIGINAL_OFFER_PHASE_* $originalOfferPhase */ public function setOriginalOfferPhase($originalOfferPhase) { $this->originalOfferPhase = $originalOfferPhase; } /** * @return self::ORIGINAL_OFFER_PHASE_* */ public function getOriginalOfferPhase() { return $this->originalOfferPhase; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ProrationPeriodDetails::class, 'Google_Service_AndroidPublisher_ProrationPeriodDetails');