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