library.FilterField docstring

This commit is contained in:
blacktwin 2020-07-02 00:40:51 -04:00
parent bf5d8b8ba3
commit 8aa492f195

View file

@ -1167,6 +1167,13 @@ class Sort(PlexObject):
class FilterField(PlexObject):
""" Represents a Filters Field element found in library.
Attributes:
TAG (str): 'Field'
key (str): Url key for filter,
title (str): Title of filter.
type (str): Type of filter (string, boolean, integer, date, etc).
subType (str): Subtype of filter (decade, rating, etc).
operators (str): Operators available for this filter.
"""
TAG = 'Field'