# 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 EdifactMessageFilter(Model):
"""The Edifact message filter for odata query.
All required parameters must be populated in order to send to Azure.
:param message_filter_type: Required. The message filter type. Possible
values include: 'NotSpecified', 'Include', 'Exclude'
:type message_filter_type: str or
~azure.mgmt.logic.models.MessageFilterType
"""
_validation = {
'message_filter_type': {'required': True},
}
_attribute_map = {
'message_filter_type': {'key': 'messageFilterType', 'type': 'MessageFilterType'},
}
def __init__(self, *, message_filter_type, **kwargs) -> None:
super(EdifactMessageFilter, self).__init__(**kwargs)
self.message_filter_type = message_filter_type