1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/honeycode/Honeycode_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace Honeycode
13 {
14 namespace Model
15 {
16   enum class Format
17   {
18     NOT_SET,
19     AUTO,
20     NUMBER,
21     CURRENCY,
22     DATE,
23     TIME,
24     DATE_TIME,
25     PERCENTAGE,
26     TEXT,
27     ACCOUNTING,
28     CONTACT,
29     ROWLINK
30   };
31 
32 namespace FormatMapper
33 {
34 AWS_HONEYCODE_API Format GetFormatForName(const Aws::String& name);
35 
36 AWS_HONEYCODE_API Aws::String GetNameForFormat(Format value);
37 } // namespace FormatMapper
38 } // namespace Model
39 } // namespace Honeycode
40 } // namespace Aws
41