Collections Filter Parameters
data class CollectionsFilterParameters(val sortCriterion: CollectionsSortCriterion = CollectionsSortCriterion.DATE_CREATED, val sortDirection: SortDirection = SortDirection.DESCENDING, val titleSearchTerm: String = "", val fandom: String = "", val isClosed: Boolean? = null, val isModerated: Boolean? = null, val collectionChallengeType: ChallengeType? = null) : AbstractMap<String, String>
Represents the additional filter parameters for browsing collections.
All the parameters appear in the filter page; browse AO3 for more details. The default values are set to match AO3's defaults.
Constructors
Link copied to clipboard
constructor(sortCriterion: CollectionsSortCriterion = CollectionsSortCriterion.DATE_CREATED, sortDirection: SortDirection = SortDirection.DESCENDING, titleSearchTerm: String = "", fandom: String = "", isClosed: Boolean? = null, isModerated: Boolean? = null, collectionChallengeType: ChallengeType? = null)