Source code for azure.cognitiveservices.formrecognizer.models.error_information_py3

# 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 ErrorInformation(Model): """ErrorInformation. :param code: :type code: str :param inner_error: :type inner_error: ~azure.cognitiveservices.formrecognizer.models.InnerError :param message: :type message: str """ _attribute_map = { 'code': {'key': 'code', 'type': 'str'}, 'inner_error': {'key': 'innerError', 'type': 'InnerError'}, 'message': {'key': 'message', 'type': 'str'}, } def __init__(self, *, code: str=None, inner_error=None, message: str=None, **kwargs) -> None: super(ErrorInformation, self).__init__(**kwargs) self.code = code self.inner_error = inner_error self.message = message