ClassificationResponse

data class ClassificationResponse(val embeddedClassification: EmbeddedClassification? = null, val links: Links? = null, val page: DiscoveryPaginationResponse? = null)

Represents a classification response from the Discovery API.

Holds embedded classifications, links, and pagination data.

Constructors

Link copied to clipboard
constructor(embeddedClassification: EmbeddedClassification? = null, links: Links? = null, page: DiscoveryPaginationResponse? = null)

Properties

Link copied to clipboard
@SerializedName(value = "_embedded")
val embeddedClassification: EmbeddedClassification? = null

Embedded classification data, if available.

Link copied to clipboard
@SerializedName(value = "_links")
val links: Links? = null

Links associated with the response, if available.

Link copied to clipboard

Pagination details for the response, if available.