blob: a8d3e900acd19a6b8d4f22c81a7d75fccb346f01 [file] [log] [blame]
#pragma once
#include <array>
#include <string>
namespace utils
{
namespace tstring
{
struct Id
{
static std::string str()
{
return "id";
}
};
struct SensorPath
{
static std::string str()
{
return "sensorPath";
}
};
struct OperationType
{
static std::string str()
{
return "operationType";
}
};
struct MetricMetadata
{
static std::string str()
{
return "metricMetadata";
}
};
struct Service
{
static std::string str()
{
return "service";
}
};
struct Path
{
static std::string str()
{
return "path";
}
};
} // namespace tstring
} // namespace utils