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