Source code for azure.mgmt.logic.models.integration_account_agreement_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 IntegrationAccountAgreementFilter(Model): """IntegrationAccountAgreementFilter. :param agreement_type: The agreement type of integration account agreement. Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact' :type agreement_type: str or :class:`AgreementType <azure.mgmt.logic.models.AgreementType>` """ _attribute_map = { 'agreement_type': {'key': 'agreementType', 'type': 'AgreementType'}, } def __init__(self, agreement_type=None): self.agreement_type = agreement_type