Source code for azure.mgmt.apimanagement.models.oauth2_authentication_settings_contract_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 OAuth2AuthenticationSettingsContract(Model): """API OAuth2 Authentication settings details. :param authorization_server_id: OAuth authorization server identifier. :type authorization_server_id: str :param scope: operations scope. :type scope: str """ _attribute_map = { 'authorization_server_id': {'key': 'authorizationServerId', 'type': 'str'}, 'scope': {'key': 'scope', 'type': 'str'}, } def __init__(self, *, authorization_server_id: str=None, scope: str=None, **kwargs) -> None: super(OAuth2AuthenticationSettingsContract, self).__init__(**kwargs) self.authorization_server_id = authorization_server_id self.scope = scope