/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The retention settings that determine how long to retain conversation
* messages for an Amazon Chime Enterprise account.See Also:
AWS
* API Reference
The number of days for which to retain conversation messages.
*/ inline int GetRetentionDays() const{ return m_retentionDays; } /** *The number of days for which to retain conversation messages.
*/ inline bool RetentionDaysHasBeenSet() const { return m_retentionDaysHasBeenSet; } /** *The number of days for which to retain conversation messages.
*/ inline void SetRetentionDays(int value) { m_retentionDaysHasBeenSet = true; m_retentionDays = value; } /** *The number of days for which to retain conversation messages.
*/ inline ConversationRetentionSettings& WithRetentionDays(int value) { SetRetentionDays(value); return *this;} private: int m_retentionDays; bool m_retentionDaysHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws