productId = $productId; } /** * @return string */ public function getProductId() { return $this->productId; } /** * The reason for the entitlement. For example, "free" for free apps. This * property is temporary: it will be replaced by the acquisition kind field of * group licenses. * * Accepted values: free, groupLicense, userPurchase * * @param self::REASON_* $reason */ public function setReason($reason) { $this->reason = $reason; } /** * @return self::REASON_* */ public function getReason() { return $this->reason; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entitlement::class, 'Google_Service_AndroidEnterprise_Entitlement');