/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace Chime { namespace Model { /** */ class ListSupportedPhoneNumberCountriesRequest : public ChimeRequest { public: AWS_CHIME_API ListSupportedPhoneNumberCountriesRequest(); // 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 "ListSupportedPhoneNumberCountries"; } AWS_CHIME_API Aws::String SerializePayload() const override; AWS_CHIME_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The phone number product type.

*/ inline const PhoneNumberProductType& GetProductType() const{ return m_productType; } /** *

The phone number product type.

*/ inline bool ProductTypeHasBeenSet() const { return m_productTypeHasBeenSet; } /** *

The phone number product type.

*/ inline void SetProductType(const PhoneNumberProductType& value) { m_productTypeHasBeenSet = true; m_productType = value; } /** *

The phone number product type.

*/ inline void SetProductType(PhoneNumberProductType&& value) { m_productTypeHasBeenSet = true; m_productType = std::move(value); } /** *

The phone number product type.

*/ inline ListSupportedPhoneNumberCountriesRequest& WithProductType(const PhoneNumberProductType& value) { SetProductType(value); return *this;} /** *

The phone number product type.

*/ inline ListSupportedPhoneNumberCountriesRequest& WithProductType(PhoneNumberProductType&& value) { SetProductType(std::move(value)); return *this;} private: PhoneNumberProductType m_productType; bool m_productTypeHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws