class Azure::CognitiveServices::LuisAuthoring::V3_0_preview::Models::ModelFeatureInformation

An object containing the model feature information either the model name or feature name.

Attributes

feature_name[RW]

@return [String] The name of the feature used.

model_name[RW]

@return [String] The name of the model used.

Private Class Methods

mapper() click to toggle source

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

# File lib/3.0-preview/generated/azure_cognitiveservices_luisauthoring/models/model_feature_information.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ModelFeatureInformation',
    type: {
      name: 'Composite',
      class_name: 'ModelFeatureInformation',
      model_properties: {
        model_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'modelName',
          type: {
            name: 'String'
          }
        },
        feature_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'featureName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end