# 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 IntegrationAccountSessionFilter(Model):
"""The integration account session filter.
All required parameters must be populated in order to send to Azure.
:param changed_time: Required. The changed time of integration account
sessions.
:type changed_time: datetime
"""
_validation = {
'changed_time': {'required': True},
}
_attribute_map = {
'changed_time': {'key': 'changedTime', 'type': 'iso-8601'},
}
def __init__(self, *, changed_time, **kwargs) -> None:
super(IntegrationAccountSessionFilter, self).__init__(**kwargs)
self.changed_time = changed_time