/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object specifying the measure and method by which to sort the utterance
* data.See Also:
AWS
* API Reference
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
The measure by which to sort the utterance analytics data.
* Count
– The number of utterances.
* UtteranceTimestamp
– The date and time of the utterance.
Specifies whether to sort the results in ascending or descending order.
*/ inline const AnalyticsSortOrder& GetOrder() const{ return m_order; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline bool OrderHasBeenSet() const { return m_orderHasBeenSet; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline void SetOrder(const AnalyticsSortOrder& value) { m_orderHasBeenSet = true; m_order = value; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline void SetOrder(AnalyticsSortOrder&& value) { m_orderHasBeenSet = true; m_order = std::move(value); } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline UtteranceDataSortBy& WithOrder(const AnalyticsSortOrder& value) { SetOrder(value); return *this;} /** *Specifies whether to sort the results in ascending or descending order.
*/ inline UtteranceDataSortBy& WithOrder(AnalyticsSortOrder&& value) { SetOrder(std::move(value)); return *this;} private: AnalyticsUtteranceSortByName m_name; bool m_nameHasBeenSet = false; AnalyticsSortOrder m_order; bool m_orderHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws