# 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 OperationStatus(Model):
"""Response of an Operation status.
:param code: Status Code. Possible values include: 'Failed', 'FAILED',
'Success'
:type code: str or
~azure.cognitiveservices.language.luis.authoring.models.OperationStatusType
:param message: Status details.
:type message: str
"""
_attribute_map = {
'code': {'key': 'code', 'type': 'str'},
'message': {'key': 'message', 'type': 'str'},
}
def __init__(self, *, code=None, message: str=None, **kwargs) -> None:
super(OperationStatus, self).__init__(**kwargs)
self.code = code
self.message = message