We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bad836 commit 6103ed8Copy full SHA for 6103ed8
office365/subscriptions/collection.py
@@ -17,6 +17,7 @@ def add(
17
expiration,
18
client_state=None,
19
latest_supported_tls_version=None,
20
+ include_resource_data=False,
21
):
22
"""
23
Subscribes a listener application to receive change notifications when the requested type of changes occur
@@ -44,6 +45,7 @@ def add(
44
45
"expirationDateTime": expiration.isoformat() + "Z",
46
"clientState": client_state,
47
"latestSupportedTlsVersion": latest_supported_tls_version,
48
+ "includeResourceData": include_resource_data,
49
}
50
qry = CreateEntityQuery(self, payload, return_type)
51
self.context.add_query(qry)
0 commit comments