ComponentDataConfiguration

data class ComponentDataConfiguration(val identifiers: List<String>? = null, val model: String, val predicate: ComponentPredicate? = null, val sort: List<ComponentSortProperty>? = null)

Constructors

Link copied to clipboard
constructor(identifiers: List<String>? = null, model: String, predicate: ComponentPredicate? = null, sort: List<ComponentSortProperty>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val identifiers: List<String>? = null

A list of IDs to use to bind data to a component. Use this property to bind specifically chosen data, rather than data retrieved from a query.

Link copied to clipboard

The name of the data model to use to bind data to a component.

Link copied to clipboard

Represents the conditional logic to use when binding data to a component. Use this property to retrieve only a subset of the data in a collection.

Link copied to clipboard

Describes how to sort the component's properties.