MDFeedFilter

public class MDFeedFilter : MDPaginationFilter

A class used to filter feeds

  • Language for the chapters to be displayed

    Declaration

    Swift

    public var translatedLanguage: [Locale]?
  • 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]?
  • Convenience function to create an empty filter

    Declaration

    Swift

    override public init()
  • Convenience init to filter feeds by language

    Declaration

    Swift

    public init(locales: [Locale])

    Parameters

    locales

    the locales to allow

  • Custom encode implementation

    Declaration

    Swift

    override public func encode(to encoder: Encoder) throws