Source code for azure.mgmt.apimanagement.models.api_export_result_value_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 ApiExportResultValue(Model): """The object defining the schema of the exported Api Detail. :param link: Link to the Storage Blob containing the result of the export operation. The Blob Uri is only valid for 5 minutes. :type link: str """ _attribute_map = { 'link': {'key': 'link', 'type': 'str'}, } def __init__(self, *, link: str=None, **kwargs) -> None: super(ApiExportResultValue, self).__init__(**kwargs) self.link = link