/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The arc axis range of a GaugeChartVisual
.See
* Also:
AWS
* API Reference
The minimum value of the arc axis range.
*/ inline double GetMin() const{ return m_min; } /** *The minimum value of the arc axis range.
*/ inline bool MinHasBeenSet() const { return m_minHasBeenSet; } /** *The minimum value of the arc axis range.
*/ inline void SetMin(double value) { m_minHasBeenSet = true; m_min = value; } /** *The minimum value of the arc axis range.
*/ inline ArcAxisDisplayRange& WithMin(double value) { SetMin(value); return *this;} /** *The maximum value of the arc axis range.
*/ inline double GetMax() const{ return m_max; } /** *The maximum value of the arc axis range.
*/ inline bool MaxHasBeenSet() const { return m_maxHasBeenSet; } /** *The maximum value of the arc axis range.
*/ inline void SetMax(double value) { m_maxHasBeenSet = true; m_max = value; } /** *The maximum value of the arc axis range.
*/ inline ArcAxisDisplayRange& WithMax(double value) { SetMax(value); return *this;} private: double m_min; bool m_minHasBeenSet = false; double m_max; bool m_maxHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws