/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ConnectCampaigns { namespace Model { /** *

Predictive Dialer config

See Also:

AWS * API Reference

*/ class PredictiveDialerConfig { public: AWS_CONNECTCAMPAIGNS_API PredictiveDialerConfig(); AWS_CONNECTCAMPAIGNS_API PredictiveDialerConfig(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCAMPAIGNS_API PredictiveDialerConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECTCAMPAIGNS_API Aws::Utils::Json::JsonValue Jsonize() const; inline double GetBandwidthAllocation() const{ return m_bandwidthAllocation; } inline bool BandwidthAllocationHasBeenSet() const { return m_bandwidthAllocationHasBeenSet; } inline void SetBandwidthAllocation(double value) { m_bandwidthAllocationHasBeenSet = true; m_bandwidthAllocation = value; } inline PredictiveDialerConfig& WithBandwidthAllocation(double value) { SetBandwidthAllocation(value); return *this;} private: double m_bandwidthAllocation; bool m_bandwidthAllocationHasBeenSet = false; }; } // namespace Model } // namespace ConnectCampaigns } // namespace Aws