class Azure::BotService::Mgmt::V2018_07_12_preview::Models::MsTeamsChannelProperties
The parameters to provide for the Microsoft Teams channel.
Attributes
calling_web_hook[RW]
@return [String] Webhook for Microsoft Teams channel calls
enable_calling[RW]
@return [Boolean] Enable calling for Microsoft Teams channel
is_enabled[RW]
@return [Boolean] Whether this channel is enabled for the bot
Private Class Methods
mapper()
click to toggle source
Mapper for MsTeamsChannelProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# 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