boost_count; } /** * @inheritDoc */ public function toArray(): array { return [ 'boost_count' => $this->boost_count ]; } /** * @inheritDoc */ public static function fromArray(array $data): ObjectTypeInterface { $object = new self(); $object->boost_count = $data['boost_count']; return $object; } }