MDReadMarkers

public struct MDReadMarkers : Decodable

Structure representing a result with a list of chapters read by the logged-in user

  • The status of the result returned by the MangaDex API

    Declaration

    Swift

    public let status: MDResultStatus
  • The list of read chapter uuids

    Note

    This will be nil if the status is not ok

    Declaration

    Swift

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

    Note

    This will be nil if the status is ok

    Declaration

    Swift

    public let errors: [MDError]?