Builder

data class Builder(val title: String, val type: Int, val href: Url, val metadata: OpdsMetadata.Builder = OpdsMetadata.Builder(title = title), val links: MutableList<Link> = mutableListOf(), val facets: MutableList<Facet.Builder> = mutableListOf(), val groups: MutableList<Group.Builder> = mutableListOf(), val publications: MutableList<Publication> = mutableListOf(), val navigation: MutableList<Link> = mutableListOf(), val context: MutableList<String> = mutableListOf())

Constructors

Link copied to clipboard
constructor(title: String, type: Int, href: Url, metadata: OpdsMetadata.Builder = OpdsMetadata.Builder(title = title), links: MutableList<Link> = mutableListOf(), facets: MutableList<Facet.Builder> = mutableListOf(), groups: MutableList<Group.Builder> = mutableListOf(), publications: MutableList<Publication> = mutableListOf(), navigation: MutableList<Link> = mutableListOf(), context: MutableList<String> = mutableListOf())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val href: Url
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val type: Int

Functions

Link copied to clipboard
fun build(): Feed