1# --------------------------------------------------------------------------------------------
2# Copyright (c) Microsoft Corporation. All rights reserved.
3# Licensed under the MIT License. See License.txt in the project root for license information.
4# --------------------------------------------------------------------------------------------
5# Generated file, DO NOT EDIT
6# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7# --------------------------------------------------------------------------------------------
8
9from msrest.serialization import Model
10
11
12class Deployment(Model):
13    """Deployment.
14
15    :param type:
16    :type type: str
17    """
18
19    _attribute_map = {
20        'type': {'key': 'type', 'type': 'str'}
21    }
22
23    def __init__(self, type=None):
24        super(Deployment, self).__init__()
25        self.type = type
26