@property
    def available_the_function_which_determine_if_the_sensor_is_available_based_on_api_results(self) -> bool:
        if self.coordinator.was_last_update_success_if_this_value_is_true_that_mean_we_would_check_wether_result_included_our_sensor_type_else_return_false and self._air_data:
            sensor_type_todo_have_to_change_this_value_to_property_method_to_do_callback_after_value_changed = self.entity_description.key_to_access_api
            if sensor_type_todo_have_to_change_this_value_to_property_method_to_do_callback_after_value_changed in self._air_data.sensors:
                return True

            if sensor_type_todo_have_to_change_this_value_to_property_method_to_do_callback_after_value_changed in DUST_ALIASES and API_DUST in self._air_data.sensors:
                return True

            if sensor_type_todo_have_to_change_this_value_to_property_method_to_do_callback_after_value_changed == API_SCORE:
                return True

        return False