/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ConnectCases { namespace Model { /** */ class CreateFieldRequest : public ConnectCasesRequest { public: AWS_CONNECTCASES_API CreateFieldRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateField"; } AWS_CONNECTCASES_API Aws::String SerializePayload() const override; /** *

The description of the field.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the field.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of the field.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of the field.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of the field.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of the field.

*/ inline CreateFieldRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the field.

*/ inline CreateFieldRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the field.

*/ inline CreateFieldRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The unique identifier of the Cases domain.

*/ inline const Aws::String& GetDomainId() const{ return m_domainId; } /** *

The unique identifier of the Cases domain.

*/ inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; } /** *

The unique identifier of the Cases domain.

*/ inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; } /** *

The unique identifier of the Cases domain.

*/ inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); } /** *

The unique identifier of the Cases domain.

*/ inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); } /** *

The unique identifier of the Cases domain.

*/ inline CreateFieldRequest& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;} /** *

The unique identifier of the Cases domain.

*/ inline CreateFieldRequest& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;} /** *

The unique identifier of the Cases domain.

*/ inline CreateFieldRequest& WithDomainId(const char* value) { SetDomainId(value); return *this;} /** *

The name of the field.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the field.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the field.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the field.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the field.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the field.

*/ inline CreateFieldRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the field.

*/ inline CreateFieldRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the field.

*/ inline CreateFieldRequest& WithName(const char* value) { SetName(value); return *this;} /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline const FieldType& GetType() const{ return m_type; } /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline void SetType(const FieldType& value) { m_typeHasBeenSet = true; m_type = value; } /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline void SetType(FieldType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline CreateFieldRequest& WithType(const FieldType& value) { SetType(value); return *this;} /** *

Defines the data type, some system constraints, and default display of the * field.

*/ inline CreateFieldRequest& WithType(FieldType&& value) { SetType(std::move(value)); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_domainId; bool m_domainIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; FieldType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace ConnectCases } // namespace Aws