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 CounterSampleQueryDetails(Model):
13    """CounterSampleQueryDetails.
14
15    :param counter_instance_id:
16    :type counter_instance_id: str
17    :param from_interval:
18    :type from_interval: int
19    :param to_interval:
20    :type to_interval: int
21    """
22
23    _attribute_map = {
24        'counter_instance_id': {'key': 'counterInstanceId', 'type': 'str'},
25        'from_interval': {'key': 'fromInterval', 'type': 'int'},
26        'to_interval': {'key': 'toInterval', 'type': 'int'}
27    }
28
29    def __init__(self, counter_instance_id=None, from_interval=None, to_interval=None):
30        super(CounterSampleQueryDetails, self).__init__()
31        self.counter_instance_id = counter_instance_id
32        self.from_interval = from_interval
33        self.to_interval = to_interval
34