Source code for azure.mgmt.managementpartner.models.extended_error_info_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 ExtendedErrorInfo(Model): """this is the extended error info. :param code: this is the error response code. Possible values include: 'NotFound', 'Conflict', 'BadRequest' :type code: str or ~azure.mgmt.managementpartner.models.enum :param message: this is the extended error info message :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(ExtendedErrorInfo, self).__init__(**kwargs) self.code = code self.message = message