Skip to content

Commit 6103ed8

Browse files
committed
include_resource_data added to SubscriptionCollection.add
1 parent 8bad836 commit 6103ed8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

office365/subscriptions/collection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def add(
1717
expiration,
1818
client_state=None,
1919
latest_supported_tls_version=None,
20+
include_resource_data=False,
2021
):
2122
"""
2223
Subscribes a listener application to receive change notifications when the requested type of changes occur
@@ -44,6 +45,7 @@ def add(
4445
"expirationDateTime": expiration.isoformat() + "Z",
4546
"clientState": client_state,
4647
"latestSupportedTlsVersion": latest_supported_tls_version,
48+
"includeResourceData": include_resource_data,
4749
}
4850
qry = CreateEntityQuery(self, payload, return_type)
4951
self.context.add_query(qry)

0 commit comments

Comments
 (0)