Feed
data class Feed(val title: String, val type: Int, val href: Url, val metadata: OpdsMetadata = OpdsMetadata(title = title), val links: List<Link> = emptyList(), val facets: List<Facet> = emptyList(), val groups: List<Group> = emptyList(), val publications: List<Publication> = emptyList(), val navigation: List<Link> = emptyList(), val context: List<String> = emptyList())
Constructors
Link copied to clipboard
constructor(title: String, type: Int, href: Url, metadata: OpdsMetadata = OpdsMetadata(title = title), links: List<Link> = emptyList(), facets: List<Facet> = emptyList(), groups: List<Group> = emptyList(), publications: List<Publication> = emptyList(), navigation: List<Link> = emptyList(), context: List<String> = emptyList())
Types
Link copied to clipboard
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())