MDReadingStatuses

public struct MDReadingStatuses : Decodable

Structure representing a result with a list of manga reading statuses for the logged-in user

  • The status of the result returned by the MangaDex API

    Declaration

    Swift

    public let status: MDResultStatus
  • A dictionary mapping manga UUIDs to their reading status

    Note

    This will be nil if the status is not ok

    Declaration

    Swift

    public let statuses: [String : MDReadingStatus]?
  • The errors contained in this response

    Note

    This will be nil if the status is ok

    Declaration

    Swift

    public let errors: [MDError]?