class Azure::CognitiveServices::LuisAuthoring::V3_0_preview::Models::ModelTrainingInfo

Model Training Info.

Attributes

details[RW]

@return [ModelTrainingDetails]

model_id[RW]

@return The ID (GUID) of the model.

Private Class Methods

mapper() click to toggle source

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

# File lib/3.0-preview/generated/azure_cognitiveservices_luisauthoring/models/model_training_info.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ModelTrainingInfo',
    type: {
      name: 'Composite',
      class_name: 'ModelTrainingInfo',
      model_properties: {
        model_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'modelId',
          type: {
            name: 'String'
          }
        },
        details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'details',
          type: {
            name: 'Composite',
            class_name: 'ModelTrainingDetails'
          }
        }
      }
    }
  }
end