@@ -802,6 +802,7 @@ def __new__(
802
802
end_time : time | None = None ,
803
803
interval_type : TimeIntervalType | None = None ,
804
804
interval_criterion : BaseExpr | None = None ,
805
+ result_for_not_applicable : IntervalType = IntervalType .NOT_APPLICABLE ,
805
806
** kwargs : Any ,
806
807
) -> "TemporalMinCount" :
807
808
"""
@@ -818,6 +819,7 @@ def __new__(
818
819
end_time = end_time ,
819
820
interval_type = interval_type ,
820
821
interval_criterion = interval_criterion ,
822
+ result_for_not_applicable = result_for_not_applicable ,
821
823
),
822
824
)
823
825
return self
@@ -844,6 +846,7 @@ def __new__(
844
846
end_time : time | None = None ,
845
847
interval_type : TimeIntervalType | None = None ,
846
848
interval_criterion : BaseExpr | None = None ,
849
+ result_for_not_applicable : IntervalType = IntervalType .NOT_APPLICABLE ,
847
850
** kwargs : Any ,
848
851
) -> "TemporalMaxCount" :
849
852
"""
@@ -860,6 +863,7 @@ def __new__(
860
863
end_time = end_time ,
861
864
interval_type = interval_type ,
862
865
interval_criterion = interval_criterion ,
866
+ result_for_not_applicable = result_for_not_applicable ,
863
867
),
864
868
)
865
869
return self
@@ -886,6 +890,7 @@ def __new__(
886
890
end_time : time | None = None ,
887
891
interval_type : TimeIntervalType | None = None ,
888
892
interval_criterion : BaseExpr | None = None ,
893
+ result_for_not_applicable : IntervalType = IntervalType .NOT_APPLICABLE ,
889
894
** kwargs : Any ,
890
895
) -> "TemporalExactCount" :
891
896
"""
@@ -902,6 +907,7 @@ def __new__(
902
907
end_time = end_time ,
903
908
interval_type = interval_type ,
904
909
interval_criterion = interval_criterion ,
910
+ result_for_not_applicable = result_for_not_applicable ,
905
911
),
906
912
)
907
913
return self
0 commit comments