# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


class DiagnosticData(Model):
    """Set of data with rendering instructions.

    :param table: Data in table form
    :type table: ~azure.mgmt.web.models.DataTableResponseObject
    :param rendering_properties: Properties that describe how the table should
     be rendered
    :type rendering_properties: ~azure.mgmt.web.models.Rendering
    """

    _attribute_map = {
        'table': {'key': 'table', 'type': 'DataTableResponseObject'},
        'rendering_properties': {'key': 'renderingProperties', 'type': 'Rendering'},
    }

    def __init__(self, *, table=None, rendering_properties=None, **kwargs) -> None:
        super(DiagnosticData, self).__init__(**kwargs)
        self.table = table
        self.rendering_properties = rendering_properties
