category = $category; } /** * @return self::CATEGORY_* */ public function getCategory() { return $this->category; } /** * Optional. The number of objects. * * @param string $count */ public function setCount($count) { $this->count = $count; } /** * @return string */ public function getCount() { return $this->count; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatabaseObjects::class, 'Google_Service_MigrationCenterAPI_DatabaseObjects');