destination = $destination; } /** * @return string */ public function getDestination() { return $this->destination; } /** * The status for the specified destination. * * Accepted values: STATE_UNSPECIFIED, IN_REVIEW, REJECTED, LIVE, STOPPED, * EXPIRED, PENDING * * @param self::STATUS_* $status */ public function setStatus($status) { $this->status = $status; } /** * @return self::STATUS_* */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PromotionPromotionStatusDestinationStatus::class, 'Google_Service_ShoppingContent_PromotionPromotionStatusDestinationStatus');