mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
library.FilterField docstring
This commit is contained in:
parent
bf5d8b8ba3
commit
8aa492f195
1 changed files with 7 additions and 0 deletions
|
@ -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'
|
||||
|
||||
|
|
Loading…
Reference in a new issue