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 CreatePlan(Model):
13    """CreatePlan.
14
15    :param description: Description of the plan
16    :type description: str
17    :param name: Name of the plan to create.
18    :type name: str
19    :param properties: Plan properties.
20    :type properties: object
21    :param type: Type of plan to create.
22    :type type: object
23    """
24
25    _attribute_map = {
26        'description': {'key': 'description', 'type': 'str'},
27        'name': {'key': 'name', 'type': 'str'},
28        'properties': {'key': 'properties', 'type': 'object'},
29        'type': {'key': 'type', 'type': 'object'}
30    }
31
32    def __init__(self, description=None, name=None, properties=None, type=None):
33        super(CreatePlan, self).__init__()
34        self.description = description
35        self.name = name
36        self.properties = properties
37        self.type = type
38