/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The values that indicate whether a pin is always required (YES), never
* required (NO), or OPTIONAL. If YES, Alexa will always ask for a
* meeting pin. If NO, Alexa will never ask for a meeting
* pin. If OPTIONAL, Alexa will ask if you have a meeting pin and
* if the customer responds with yes, it will ask for the meeting pin.
See Also:
AWS
* API Reference
The values that indicate whether the pin is always required.
*/ inline const RequirePin& GetRequirePin() const{ return m_requirePin; } /** *The values that indicate whether the pin is always required.
*/ inline bool RequirePinHasBeenSet() const { return m_requirePinHasBeenSet; } /** *The values that indicate whether the pin is always required.
*/ inline void SetRequirePin(const RequirePin& value) { m_requirePinHasBeenSet = true; m_requirePin = value; } /** *The values that indicate whether the pin is always required.
*/ inline void SetRequirePin(RequirePin&& value) { m_requirePinHasBeenSet = true; m_requirePin = std::move(value); } /** *The values that indicate whether the pin is always required.
*/ inline MeetingSetting& WithRequirePin(const RequirePin& value) { SetRequirePin(value); return *this;} /** *The values that indicate whether the pin is always required.
*/ inline MeetingSetting& WithRequirePin(RequirePin&& value) { SetRequirePin(std::move(value)); return *this;} private: RequirePin m_requirePin; bool m_requirePinHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws