This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-chime/include/aws/chime/model/UpdatePhoneNumberRequestItem.h

170 lines
5.2 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/chime/model/PhoneNumberProductType.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Chime
{
namespace Model
{
/**
* <p>The phone number ID, product type, or calling name fields to update, used
* with the <a>BatchUpdatePhoneNumber</a> and <a>UpdatePhoneNumber</a>
* actions.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/UpdatePhoneNumberRequestItem">AWS
* API Reference</a></p>
*/
class AWS_CHIME_API UpdatePhoneNumberRequestItem
{
public:
UpdatePhoneNumberRequestItem();
UpdatePhoneNumberRequestItem(Aws::Utils::Json::JsonView jsonValue);
UpdatePhoneNumberRequestItem& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The phone number ID to update.</p>
*/
inline const Aws::String& GetPhoneNumberId() const{ return m_phoneNumberId; }
/**
* <p>The phone number ID to update.</p>
*/
inline bool PhoneNumberIdHasBeenSet() const { return m_phoneNumberIdHasBeenSet; }
/**
* <p>The phone number ID to update.</p>
*/
inline void SetPhoneNumberId(const Aws::String& value) { m_phoneNumberIdHasBeenSet = true; m_phoneNumberId = value; }
/**
* <p>The phone number ID to update.</p>
*/
inline void SetPhoneNumberId(Aws::String&& value) { m_phoneNumberIdHasBeenSet = true; m_phoneNumberId = std::move(value); }
/**
* <p>The phone number ID to update.</p>
*/
inline void SetPhoneNumberId(const char* value) { m_phoneNumberIdHasBeenSet = true; m_phoneNumberId.assign(value); }
/**
* <p>The phone number ID to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithPhoneNumberId(const Aws::String& value) { SetPhoneNumberId(value); return *this;}
/**
* <p>The phone number ID to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithPhoneNumberId(Aws::String&& value) { SetPhoneNumberId(std::move(value)); return *this;}
/**
* <p>The phone number ID to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithPhoneNumberId(const char* value) { SetPhoneNumberId(value); return *this;}
/**
* <p>The product type to update.</p>
*/
inline const PhoneNumberProductType& GetProductType() const{ return m_productType; }
/**
* <p>The product type to update.</p>
*/
inline bool ProductTypeHasBeenSet() const { return m_productTypeHasBeenSet; }
/**
* <p>The product type to update.</p>
*/
inline void SetProductType(const PhoneNumberProductType& value) { m_productTypeHasBeenSet = true; m_productType = value; }
/**
* <p>The product type to update.</p>
*/
inline void SetProductType(PhoneNumberProductType&& value) { m_productTypeHasBeenSet = true; m_productType = std::move(value); }
/**
* <p>The product type to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithProductType(const PhoneNumberProductType& value) { SetProductType(value); return *this;}
/**
* <p>The product type to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithProductType(PhoneNumberProductType&& value) { SetProductType(std::move(value)); return *this;}
/**
* <p>The outbound calling name to update.</p>
*/
inline const Aws::String& GetCallingName() const{ return m_callingName; }
/**
* <p>The outbound calling name to update.</p>
*/
inline bool CallingNameHasBeenSet() const { return m_callingNameHasBeenSet; }
/**
* <p>The outbound calling name to update.</p>
*/
inline void SetCallingName(const Aws::String& value) { m_callingNameHasBeenSet = true; m_callingName = value; }
/**
* <p>The outbound calling name to update.</p>
*/
inline void SetCallingName(Aws::String&& value) { m_callingNameHasBeenSet = true; m_callingName = std::move(value); }
/**
* <p>The outbound calling name to update.</p>
*/
inline void SetCallingName(const char* value) { m_callingNameHasBeenSet = true; m_callingName.assign(value); }
/**
* <p>The outbound calling name to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithCallingName(const Aws::String& value) { SetCallingName(value); return *this;}
/**
* <p>The outbound calling name to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithCallingName(Aws::String&& value) { SetCallingName(std::move(value)); return *this;}
/**
* <p>The outbound calling name to update.</p>
*/
inline UpdatePhoneNumberRequestItem& WithCallingName(const char* value) { SetCallingName(value); return *this;}
private:
Aws::String m_phoneNumberId;
bool m_phoneNumberIdHasBeenSet;
PhoneNumberProductType m_productType;
bool m_productTypeHasBeenSet;
Aws::String m_callingName;
bool m_callingNameHasBeenSet;
};
} // namespace Model
} // namespace Chime
} // namespace Aws