MDChapterFilter
public class MDChapterFilter : MDPaginationFilter
A class used to filter chapter results during search
-
Title search string
Declaration
Swift
public var title: String?
-
List of scanlation group UUIDs
Declaration
Swift
public var groups: [String]?
-
Original uploader UUID
Declaration
Swift
public var uploader: String?
-
UUID of the manga the chapter must belong to
Declaration
Swift
public var manga: String?
-
List of languages in which the chapters may be translated
Declaration
Swift
public var translatedLanguage: [Locale]?
-
Volume number in which the chapter appears
Declaration
Swift
public var volume: String?
-
Chapter number
Declaration
Swift
public var chapter: String?
-
Only list results created after this date
Declaration
Swift
public var createdAtSince: Date?
-
Only list results updated after this date
Declaration
Swift
public var updatedAtSince: Date?
-
Only list results published after this date
Declaration
Swift
public var publishedAtSince: Date?
-
Sort order for the results
Declaration
Swift
public var order: [MDSortCriteria : MDSortOrder]?
-
A list of object ids to which to limit the results
Note
Limited to 100 per requestDeclaration
Swift
public var ids: [String]?
-
Convenience function to create an empty filter
Declaration
Swift
override public init()
-
Convenience init to search for chapters by title
Declaration
Swift
public init(title: String)
Parameters
title
the title search string
-
Custom
encode
implementationDeclaration
Swift
override public func encode(to encoder: Encoder) throws