/* * 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 connectparticipant-2018-09-07.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.ConnectParticipant.Model { /// /// This is the response object from the CreateParticipantConnection operation. /// public partial class CreateParticipantConnectionResponse : AmazonWebServiceResponse { private ConnectionCredentials _connectionCredentials; private Websocket _websocket; /// /// Gets and sets the property ConnectionCredentials. /// /// Creates the participant's connection credentials. The authentication token associated /// with the participant's connection. /// /// public ConnectionCredentials ConnectionCredentials { get { return this._connectionCredentials; } set { this._connectionCredentials = value; } } // Check to see if ConnectionCredentials property is set internal bool IsSetConnectionCredentials() { return this._connectionCredentials != null; } /// /// Gets and sets the property Websocket. /// /// Creates the participant's websocket connection. /// /// public Websocket Websocket { get { return this._websocket; } set { this._websocket = value; } } // Check to see if Websocket property is set internal bool IsSetWebsocket() { return this._websocket != null; } } }