123456789101112131415161718192021222324 |
- #pragma once
- #include <library/cpp/yt/misc/guid.h>
- #include <util/generic/string.h>
- #include <variant>
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- struct TExceptionAttribute
- {
- using TKey = TString;
- using TValue = std::variant<i64, double, bool, TString>;
- TKey Key;
- TValue Value;
- };
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|