@@ -1058,6 +1058,8 @@ class IngestionClient(
10581058 * Destination IDs for filtering the list of tasks.
10591059 * @param triggerType
10601060 * 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.
10611063 * @param sort
10621064 * Property by which to sort the list of tasks.
10631065 * @param order
@@ -1072,6 +1074,7 @@ class IngestionClient(
10721074 sourceType : Option [Seq [SourceType ]] = None ,
10731075 destinationID : Option [Seq [String ]] = None ,
10741076 triggerType : Option [Seq [TriggerType ]] = None ,
1077+ withEmailNotifications : Option [Boolean ] = None ,
10751078 sort : Option [TaskSortKeys ] = None ,
10761079 order : Option [OrderKeys ] = None ,
10771080 requestOptions : Option [RequestOptions ] = None
@@ -1089,6 +1092,7 @@ class IngestionClient(
10891092 .withQueryParameter(" sourceType" , sourceType)
10901093 .withQueryParameter(" destinationID" , destinationID)
10911094 .withQueryParameter(" triggerType" , triggerType)
1095+ .withQueryParameter(" withEmailNotifications" , withEmailNotifications)
10921096 .withQueryParameter(" sort" , sort)
10931097 .withQueryParameter(" order" , order)
10941098 .build()
0 commit comments