xref: /openbmc/bmcweb/features/redfish/include/generated/enums/registered_client.hpp (revision 40e9b92ec19acffb46f83a6e55b18974da5d708e)
1*40e9b92eSEd Tanous // SPDX-License-Identifier: Apache-2.0
2*40e9b92eSEd Tanous // SPDX-FileCopyrightText: Copyright OpenBMC Authors
3853c0dc5SEd Tanous #pragma once
4853c0dc5SEd Tanous #include <nlohmann/json.hpp>
5853c0dc5SEd Tanous 
6853c0dc5SEd Tanous namespace registered_client
7853c0dc5SEd Tanous {
8853c0dc5SEd Tanous // clang-format off
9853c0dc5SEd Tanous 
10853c0dc5SEd Tanous enum class ClientType{
11853c0dc5SEd Tanous     Invalid,
12853c0dc5SEd Tanous     Monitor,
13853c0dc5SEd Tanous     Configure,
14853c0dc5SEd Tanous };
15853c0dc5SEd Tanous 
16853c0dc5SEd Tanous NLOHMANN_JSON_SERIALIZE_ENUM(ClientType, {
17853c0dc5SEd Tanous     {ClientType::Invalid, "Invalid"},
18853c0dc5SEd Tanous     {ClientType::Monitor, "Monitor"},
19853c0dc5SEd Tanous     {ClientType::Configure, "Configure"},
20853c0dc5SEd Tanous });
21853c0dc5SEd Tanous 
22853c0dc5SEd Tanous }
23853c0dc5SEd Tanous // clang-format on
24