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 Activity(Model):
13    """Activity.
14
15    :param capacity_per_day:
16    :type capacity_per_day: int
17    :param name:
18    :type name: str
19    """
20
21    _attribute_map = {
22        'capacity_per_day': {'key': 'capacityPerDay', 'type': 'int'},
23        'name': {'key': 'name', 'type': 'str'}
24    }
25
26    def __init__(self, capacity_per_day=None, name=None):
27        super(Activity, self).__init__()
28        self.capacity_per_day = capacity_per_day
29        self.name = name
30