xref: /openbmc/bmcweb/redfish-core/include/event_logs_object_type.hpp (revision 5ffbc9ae424658c15c2b6d93b86b752f09d2b6dc)
1 // SPDX-License-Identifier: Apache-2.0
2 // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3 // SPDX-FileCopyrightText: Copyright 2020 Intel Corporation
4 #pragma once
5 
6 #include <string>
7 #include <vector>
8 namespace redfish
9 {
10 struct EventLogObjectsType
11 {
12     std::string id;
13     std::string timestamp;
14     std::string messageId;
15     std::vector<std::string> messageArgs;
16 };
17 } // namespace redfish
18