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