/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The details of an Amazon Chime SDK Voice Connector call.See
* Also:
AWS
* API Reference
The Voice Connector ID.
*/ inline const Aws::String& GetVoiceConnectorId() const{ return m_voiceConnectorId; } /** *The Voice Connector ID.
*/ inline bool VoiceConnectorIdHasBeenSet() const { return m_voiceConnectorIdHasBeenSet; } /** *The Voice Connector ID.
*/ inline void SetVoiceConnectorId(const Aws::String& value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId = value; } /** *The Voice Connector ID.
*/ inline void SetVoiceConnectorId(Aws::String&& value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId = std::move(value); } /** *The Voice Connector ID.
*/ inline void SetVoiceConnectorId(const char* value) { m_voiceConnectorIdHasBeenSet = true; m_voiceConnectorId.assign(value); } /** *The Voice Connector ID.
*/ inline CallDetails& WithVoiceConnectorId(const Aws::String& value) { SetVoiceConnectorId(value); return *this;} /** *The Voice Connector ID.
*/ inline CallDetails& WithVoiceConnectorId(Aws::String&& value) { SetVoiceConnectorId(std::move(value)); return *this;} /** *The Voice Connector ID.
*/ inline CallDetails& WithVoiceConnectorId(const char* value) { SetVoiceConnectorId(value); return *this;} /** *The transaction ID of a Voice Connector call.
*/ inline const Aws::String& GetTransactionId() const{ return m_transactionId; } /** *The transaction ID of a Voice Connector call.
*/ inline bool TransactionIdHasBeenSet() const { return m_transactionIdHasBeenSet; } /** *The transaction ID of a Voice Connector call.
*/ inline void SetTransactionId(const Aws::String& value) { m_transactionIdHasBeenSet = true; m_transactionId = value; } /** *The transaction ID of a Voice Connector call.
*/ inline void SetTransactionId(Aws::String&& value) { m_transactionIdHasBeenSet = true; m_transactionId = std::move(value); } /** *The transaction ID of a Voice Connector call.
*/ inline void SetTransactionId(const char* value) { m_transactionIdHasBeenSet = true; m_transactionId.assign(value); } /** *The transaction ID of a Voice Connector call.
*/ inline CallDetails& WithTransactionId(const Aws::String& value) { SetTransactionId(value); return *this;} /** *The transaction ID of a Voice Connector call.
*/ inline CallDetails& WithTransactionId(Aws::String&& value) { SetTransactionId(std::move(value)); return *this;} /** *The transaction ID of a Voice Connector call.
*/ inline CallDetails& WithTransactionId(const char* value) { SetTransactionId(value); return *this;} /** *Identifies a person as the caller or the callee.
*/ inline bool GetIsCaller() const{ return m_isCaller; } /** *Identifies a person as the caller or the callee.
*/ inline bool IsCallerHasBeenSet() const { return m_isCallerHasBeenSet; } /** *Identifies a person as the caller or the callee.
*/ inline void SetIsCaller(bool value) { m_isCallerHasBeenSet = true; m_isCaller = value; } /** *Identifies a person as the caller or the callee.
*/ inline CallDetails& WithIsCaller(bool value) { SetIsCaller(value); return *this;} private: Aws::String m_voiceConnectorId; bool m_voiceConnectorIdHasBeenSet = false; Aws::String m_transactionId; bool m_transactionIdHasBeenSet = false; bool m_isCaller; bool m_isCallerHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws