Class: Azure::BotService::Mgmt::V2018_07_12_preview::Models::MsTeamsChannelProperties
- Inherits:
-
Object
- Object
- Azure::BotService::Mgmt::V2018_07_12_preview::Models::MsTeamsChannelProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/ms_teams_channel_properties.rb
Overview
The parameters to provide for the Microsoft Teams channel.
Instance Attribute Summary collapse
-
#calling_web_hook ⇒ String
Webhook for Microsoft Teams channel calls.
-
#enable_calling ⇒ Boolean
Enable calling for Microsoft Teams channel.
-
#is_enabled ⇒ Boolean
Whether this channel is enabled for the bot.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MsTeamsChannelProperties class as Ruby Hash.
Instance Attribute Details
#calling_web_hook ⇒ String
Returns Webhook for Microsoft Teams channel calls.
19 20 21 |
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/ms_teams_channel_properties.rb', line 19 def calling_web_hook @calling_web_hook end |
#enable_calling ⇒ Boolean
Returns Enable calling for Microsoft Teams channel.
16 17 18 |
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/ms_teams_channel_properties.rb', line 16 def enable_calling @enable_calling end |
#is_enabled ⇒ Boolean
Returns Whether this channel is enabled for the bot.
22 23 24 |
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/ms_teams_channel_properties.rb', line 22 def is_enabled @is_enabled end |
Class Method Details
.mapper ⇒ Object
Mapper for MsTeamsChannelProperties class as Ruby Hash. This will be used for serialization/deserialization.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/ms_teams_channel_properties.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MsTeamsChannelProperties', type: { name: 'Composite', class_name: 'MsTeamsChannelProperties', model_properties: { enable_calling: { client_side_validation: true, required: false, serialized_name: 'enableCalling', type: { name: 'Boolean' } }, calling_web_hook: { client_side_validation: true, required: false, serialized_name: 'callingWebHook', type: { name: 'String' } }, is_enabled: { client_side_validation: true, required: true, serialized_name: 'isEnabled', type: { name: 'Boolean' } } } } } end |