ageRange = $ageRange; } /** * @return self::AGE_RANGE_* */ public function getAgeRange() { return $this->ageRange; } /** * Gender of the audience for which the lift is provided. * * Accepted values: GENDER_UNSPECIFIED, GENDER_UNKNOWN, GENDER_MALE, * GENDER_FEMALE * * @param self::GENDER_* $gender */ public function setGender($gender) { $this->gender = $gender; } /** * @return self::GENDER_* */ public function getGender() { return $this->gender; } /** * Measure of lift that the audience has for the attribute value as compared * to the baseline. Range [0-1]. * * @param float $lift */ public function setLift($lift) { $this->lift = $lift; } /** * @return float */ public function getLift() { return $this->lift; } /** * The user interest ID. * * @param string $userInterestId */ public function setUserInterestId($userInterestId) { $this->userInterestId = $userInterestId; } /** * @return string */ public function getUserInterestId() { return $this->userInterestId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MarketingDataInsightsAttribute::class, 'Google_Service_DataManager_MarketingDataInsightsAttribute');