# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class ModelTrainingInfo(Model):
"""Model Training Info.
:param model_id: The ID (GUID) of the model.
:type model_id: str
:param details:
:type details:
~azure.cognitiveservices.language.luis.authoring.models.ModelTrainingDetails
"""
_attribute_map = {
'model_id': {'key': 'modelId', 'type': 'str'},
'details': {'key': 'details', 'type': 'ModelTrainingDetails'},
}
def __init__(self, *, model_id: str=None, details=None, **kwargs) -> None:
super(ModelTrainingInfo, self).__init__(**kwargs)
self.model_id = model_id
self.details = details