Source code for azure.mgmt.logic.models.integration_account_map_filter

# 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


[docs]class IntegrationAccountMapFilter(Model): """IntegrationAccountMapFilter. :param schema_type: The map type of integration account map. Possible values include: 'NotSpecified', 'Xslt' :type schema_type: str or :class:`MapType <azure.mgmt.logic.models.MapType>` """ _attribute_map = { 'schema_type': {'key': 'schemaType', 'type': 'MapType'}, } def __init__(self, schema_type=None): self.schema_type = schema_type