| // DO NOT EDIT MANUALLY - Generated file |
| // |
| // Cluster metadata information for cluster FlowMeasurement (cluster code: 1028/0x404) |
| // based on src/controller/data_model/controller-clusters.matter |
| #pragma once |
| |
| #include <optional> |
| |
| #include <app/data-model-provider/ClusterMetadataProvider.h> |
| #include <app/data-model-provider/MetadataTypes.h> |
| #include <clusters/FlowMeasurement/Ids.h> |
| #include <clusters/FlowMeasurement/Metadata.h> |
| |
| namespace chip { |
| namespace app { |
| namespace DataModel { |
| |
| template <> |
| struct ClusterMetadataProvider<DataModel::AttributeEntry, Clusters::FlowMeasurement::Id> |
| { |
| static constexpr std::optional<DataModel::AttributeEntry> EntryFor(AttributeId attributeId) |
| { |
| using namespace Clusters::FlowMeasurement::Attributes; |
| switch (attributeId) |
| { |
| case MeasuredValue::Id: |
| return MeasuredValue::kMetadataEntry; |
| case MinMeasuredValue::Id: |
| return MinMeasuredValue::kMetadataEntry; |
| case MaxMeasuredValue::Id: |
| return MaxMeasuredValue::kMetadataEntry; |
| case Tolerance::Id: |
| return Tolerance::kMetadataEntry; |
| default: |
| return std::nullopt; |
| } |
| } |
| }; |
| |
| template <> |
| struct ClusterMetadataProvider<DataModel::AcceptedCommandEntry, Clusters::FlowMeasurement::Id> |
| { |
| static constexpr std::optional<DataModel::AcceptedCommandEntry> EntryFor(CommandId commandId) |
| { |
| using namespace Clusters::FlowMeasurement::Commands; |
| switch (commandId) |
| { |
| |
| default: |
| return std::nullopt; |
| } |
| } |
| }; |
| |
| } // namespace DataModel |
| } // namespace app |
| } // namespace chip |