xref: /openbmc/bmcweb/redfish-core/include/generated/enums/facility.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 facility
7853c0dc5SEd Tanous {
8853c0dc5SEd Tanous // clang-format off
9853c0dc5SEd Tanous 
10853c0dc5SEd Tanous enum class FacilityType{
11853c0dc5SEd Tanous     Invalid,
12853c0dc5SEd Tanous     Room,
13853c0dc5SEd Tanous     Floor,
14853c0dc5SEd Tanous     Building,
15853c0dc5SEd Tanous     Site,
16853c0dc5SEd Tanous };
17853c0dc5SEd Tanous 
18853c0dc5SEd Tanous NLOHMANN_JSON_SERIALIZE_ENUM(FacilityType, {
19853c0dc5SEd Tanous     {FacilityType::Invalid, "Invalid"},
20853c0dc5SEd Tanous     {FacilityType::Room, "Room"},
21853c0dc5SEd Tanous     {FacilityType::Floor, "Floor"},
22853c0dc5SEd Tanous     {FacilityType::Building, "Building"},
23853c0dc5SEd Tanous     {FacilityType::Site, "Site"},
24853c0dc5SEd Tanous });
25853c0dc5SEd Tanous 
26853c0dc5SEd Tanous }
27853c0dc5SEd Tanous // clang-format on
28