# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Web::Mgmt::V2016_03_01 module Models # # Definition of Detector # class DetectorInfo include MsRestAzure # @return [String] Short description of the detector and its purpose attr_accessor :description # @return [String] Support Category attr_accessor :category # @return [String] Support Sub Category attr_accessor :sub_category # @return [String] Support Topic Id attr_accessor :support_topic_id # # Mapper for DetectorInfo class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DetectorInfo', type: { name: 'Composite', class_name: 'DetectorInfo', model_properties: { description: { client_side_validation: true, required: false, read_only: true, serialized_name: 'description', type: { name: 'String' } }, category: { client_side_validation: true, required: false, read_only: true, serialized_name: 'category', type: { name: 'String' } }, sub_category: { client_side_validation: true, required: false, read_only: true, serialized_name: 'subCategory', type: { name: 'String' } }, support_topic_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'supportTopicId', type: { name: 'String' } } } } } end end end end