Get .ScheduleFIlter Name?

Is there a way to retrieve the name, or more specifically the parameter name associated to a Schedule Filter?
While a .ScheduleField has a class “GetName()” I believe the Filter does not. I ask this for many reasons, one of which is for error checking and retrieving the correct filter to get or set without manually inputting which FieldId index it is.

For example I would like to be able to:

filterList = Schedule.Definition.GetFilters()
for f in filterList:
if (f.(Name of filter) == strtosearch)
…take action