@@ -1058,6 +1058,8 @@ class IngestionClient(
1058
1058
* Destination IDs for filtering the list of tasks.
1059
1059
* @param triggerType
1060
1060
* Type of task trigger for filtering the list of tasks.
1061
+ * @param withEmailNotifications
1062
+ * If specified, the response only includes tasks with notifications.email.enabled set to this value.
1061
1063
* @param sort
1062
1064
* Property by which to sort the list of tasks.
1063
1065
* @param order
@@ -1072,6 +1074,7 @@ class IngestionClient(
1072
1074
sourceType : Option [Seq [SourceType ]] = None ,
1073
1075
destinationID : Option [Seq [String ]] = None ,
1074
1076
triggerType : Option [Seq [TriggerType ]] = None ,
1077
+ withEmailNotifications : Option [Boolean ] = None ,
1075
1078
sort : Option [TaskSortKeys ] = None ,
1076
1079
order : Option [OrderKeys ] = None ,
1077
1080
requestOptions : Option [RequestOptions ] = None
@@ -1089,6 +1092,7 @@ class IngestionClient(
1089
1092
.withQueryParameter(" sourceType" , sourceType)
1090
1093
.withQueryParameter(" destinationID" , destinationID)
1091
1094
.withQueryParameter(" triggerType" , triggerType)
1095
+ .withQueryParameter(" withEmailNotifications" , withEmailNotifications)
1092
1096
.withQueryParameter(" sort" , sort)
1093
1097
.withQueryParameter(" order" , order)
1094
1098
.build()
0 commit comments