class Azure::CognitiveServices::LuisAuthoring::V3_0_preview::Models::JsonModelFeatureInformation
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 JsonModelFeatureInformation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/3.0-preview/generated/azure_cognitiveservices_luisauthoring/models/json_model_feature_information.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'JsonModelFeatureInformation', type: { name: 'Composite', class_name: 'JsonModelFeatureInformation', 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