class Azure::BotService::Mgmt::V2018_07_12_preview::Models::SmsChannelProperties

The parameters to provide for the Sms channel.

Attributes

account_sid[RW]

@return [String] The Sms account SID. Value only returned through POST to the action Channel List API, otherwise empty.

auth_token[RW]

@return [String] The Sms auth token. Value only returned through POST to the action Channel List API, otherwise empty.

is_enabled[RW]

@return [Boolean] Whether this channel is enabled for the bot

is_validated[RW]

@return [Boolean] Whether this channel is validated for the bot

phone[RW]

@return [String] The Sms phone

Private Class Methods

mapper() click to toggle source

Mapper for SmsChannelProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/sms_channel_properties.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SmsChannelProperties',
    type: {
      name: 'Composite',
      class_name: 'SmsChannelProperties',
      model_properties: {
        phone: {
          client_side_validation: true,
          required: true,
          serialized_name: 'phone',
          type: {
            name: 'String'
          }
        },
        account_sid: {
          client_side_validation: true,
          required: true,
          serialized_name: 'accountSID',
          type: {
            name: 'String'
          }
        },
        auth_token: {
          client_side_validation: true,
          required: true,
          serialized_name: 'authToken',
          type: {
            name: 'String'
          }
        },
        is_validated: {
          client_side_validation: true,
          required: false,
          serialized_name: 'isValidated',
          type: {
            name: 'Boolean'
          }
        },
        is_enabled: {
          client_side_validation: true,
          required: true,
          serialized_name: 'isEnabled',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end