/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKVoice { namespace Model { class ListSupportedPhoneNumberCountriesResult { public: AWS_CHIMESDKVOICE_API ListSupportedPhoneNumberCountriesResult(); AWS_CHIMESDKVOICE_API ListSupportedPhoneNumberCountriesResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKVOICE_API ListSupportedPhoneNumberCountriesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The supported phone number countries.

*/ inline const Aws::Vector& GetPhoneNumberCountries() const{ return m_phoneNumberCountries; } /** *

The supported phone number countries.

*/ inline void SetPhoneNumberCountries(const Aws::Vector& value) { m_phoneNumberCountries = value; } /** *

The supported phone number countries.

*/ inline void SetPhoneNumberCountries(Aws::Vector&& value) { m_phoneNumberCountries = std::move(value); } /** *

The supported phone number countries.

*/ inline ListSupportedPhoneNumberCountriesResult& WithPhoneNumberCountries(const Aws::Vector& value) { SetPhoneNumberCountries(value); return *this;} /** *

The supported phone number countries.

*/ inline ListSupportedPhoneNumberCountriesResult& WithPhoneNumberCountries(Aws::Vector&& value) { SetPhoneNumberCountries(std::move(value)); return *this;} /** *

The supported phone number countries.

*/ inline ListSupportedPhoneNumberCountriesResult& AddPhoneNumberCountries(const PhoneNumberCountry& value) { m_phoneNumberCountries.push_back(value); return *this; } /** *

The supported phone number countries.

*/ inline ListSupportedPhoneNumberCountriesResult& AddPhoneNumberCountries(PhoneNumberCountry&& value) { m_phoneNumberCountries.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListSupportedPhoneNumberCountriesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListSupportedPhoneNumberCountriesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListSupportedPhoneNumberCountriesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_phoneNumberCountries; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws