} // namespace anonymous
-std::string CHG_TARIFF::Serialize(const TARIFF_DATA_RES & data)
+std::string CHG_TARIFF::Serialize(const TARIFF_DATA_RES & data, const std::string & /*encoding*/)
{
std::ostringstream stream;
-appendResetable(stream, "fee", data.tariffConf.fee);
-appendResetable(stream, "passiveCost", data.tariffConf.passiveCost);
-appendResetable(stream, "free", data.tariffConf.free);
+appendResetableTag(stream, "fee", data.tariffConf.fee);
+appendResetableTag(stream, "passiveCost", data.tariffConf.passiveCost);
+appendResetableTag(stream, "free", data.tariffConf.free);
if (!data.tariffConf.traffType.empty())
- switch (data.tariffConf.traffType.data())
- {
- case TRAFF_UP: stream << "<traffType value=\"up\"/>"; break;
- case TRAFF_DOWN: stream << "<traffType value=\"down\"/>"; break;
- case TRAFF_UP_DOWN: stream << "<traffType value=\"up+down\"/>"; break;
- case TRAFF_MAX: stream << "<traffType value=\"max\"/>"; break;
- }
+ stream << "<traffType value=\"" + TARIFF::TraffTypeToString(data.tariffConf.traffType.data()) + "\"/>";
if (!data.tariffConf.period.empty())
switch (data.tariffConf.period.data())