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-connect/source/model/UpdateUserPhoneConfigRequest.cpp

38 lines
762 B
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/connect/model/UpdateUserPhoneConfigRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Connect::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
UpdateUserPhoneConfigRequest::UpdateUserPhoneConfigRequest() :
m_phoneConfigHasBeenSet(false),
m_userIdHasBeenSet(false),
m_instanceIdHasBeenSet(false)
{
}
Aws::String UpdateUserPhoneConfigRequest::SerializePayload() const
{
JsonValue payload;
if(m_phoneConfigHasBeenSet)
{
payload.WithObject("PhoneConfig", m_phoneConfig.Jsonize());
}
return payload.View().WriteReadable();
}