/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the chime-2018-05-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Chime.Model { /// /// Settings related to the Amazon Chime account. This includes settings that start or /// stop remote control of shared screens, or start or stop the dial-out option in the /// Amazon Chime web application. For more information about these settings, see Use /// the Policies Page in the Amazon Chime Administration Guide. /// public partial class AccountSettings { private bool? _disableRemoteControl; private bool? _enableDialOut; /// /// Gets and sets the property DisableRemoteControl. /// /// Setting that stops or starts remote control of shared screens during meetings. /// /// public bool DisableRemoteControl { get { return this._disableRemoteControl.GetValueOrDefault(); } set { this._disableRemoteControl = value; } } // Check to see if DisableRemoteControl property is set internal bool IsSetDisableRemoteControl() { return this._disableRemoteControl.HasValue; } /// /// Gets and sets the property EnableDialOut. /// /// Setting that allows meeting participants to choose the Call me at a phone number /// option. For more information, see Join /// a Meeting without the Amazon Chime App. /// /// public bool EnableDialOut { get { return this._enableDialOut.GetValueOrDefault(); } set { this._enableDialOut = value; } } // Check to see if EnableDialOut property is set internal bool IsSetEnableDialOut() { return this._enableDialOut.HasValue; } } }