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 PublisherFacts(Model):
13    """PublisherFacts.
14
15    :param display_name:
16    :type display_name: str
17    :param flags:
18    :type flags: object
19    :param publisher_id:
20    :type publisher_id: str
21    :param publisher_name:
22    :type publisher_name: str
23    """
24
25    _attribute_map = {
26        'display_name': {'key': 'displayName', 'type': 'str'},
27        'flags': {'key': 'flags', 'type': 'object'},
28        'publisher_id': {'key': 'publisherId', 'type': 'str'},
29        'publisher_name': {'key': 'publisherName', 'type': 'str'}
30    }
31
32    def __init__(self, display_name=None, flags=None, publisher_id=None, publisher_name=None):
33        super(PublisherFacts, self).__init__()
34        self.display_name = display_name
35        self.flags = flags
36        self.publisher_id = publisher_id
37        self.publisher_name = publisher_name
38