IndexField

data class IndexField(val arrayConfig: String? = null, val fieldPath: String? = null, val order: String? = null)

Constructors

Link copied to clipboard
constructor(arrayConfig: String? = null, fieldPath: String? = null, order: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val arrayConfig: String? = null

Indicates that this field supports operations on arrayValues. Only one of order and arrayConfig can be specified. Possible values are: CONTAINS.

Link copied to clipboard
val fieldPath: String? = null

Name of the field.

Link copied to clipboard
val order: String? = null

Indicates that this field supports ordering by the specified order or comparing using =, <, <=, >, >=. Only one of order and arrayConfig can be specified. Possible values are: ASCENDING, DESCENDING.