SeriesInfo

data class SeriesInfo(val id: Long, val creators: List<UserReference>, val beginDate: LocalDate, val lastUpdatedDate: LocalDate, val description: Html, val notes: Html, val wordCount: Int, val worksCount: Int, val bookmarksCount: Int, val completionStatus: Boolean)

Represents the detailed information of a series. Should be paired with WorkBlurbs when converted from HTML.

Constructors

Link copied to clipboard
constructor(id: Long, creators: List<UserReference>, beginDate: LocalDate, lastUpdatedDate: LocalDate, description: Html, notes: Html, wordCount: Int, worksCount: Int, bookmarksCount: Int, completionStatus: Boolean)

Properties

Link copied to clipboard

Date of creation of the series.

Link copied to clipboard

Number of bookmarks across all works in the series.

Link copied to clipboard

Indicates if the series is complete.

Link copied to clipboard

List of creators of the series.

Link copied to clipboard

Raw HTML of the description blurb.

Link copied to clipboard
val id: Long

Unique ID of the series.

Link copied to clipboard

Date of last update of the series.

Link copied to clipboard
val notes: Html

Raw HTML of the notes blurb.

Link copied to clipboard

Number of words across all works in the series.

Link copied to clipboard

Number of works in the series.