Source code for azure.mgmt.logic.models.content_hash_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 ContentHash(Model): """The content hash. :param algorithm: The algorithm of the content hash. :type algorithm: str :param value: The value of the content hash. :type value: str """ _attribute_map = { 'algorithm': {'key': 'algorithm', 'type': 'str'}, 'value': {'key': 'value', 'type': 'str'}, } def __init__(self, *, algorithm: str=None, value: str=None, **kwargs) -> None: super(ContentHash, self).__init__(**kwargs) self.algorithm = algorithm self.value = value