BetweenStart

data class BetweenStart<V>(val field: String, val start: V)

Represents the start of a range condition for a specific field.

This class is used to define the starting point of a range in query conditions, typically for operations that require a 'between' clause. The field parameter specifies the name of the field on which the condition is applied, and start defines the starting value of the range.

Parameters

V

The type of the value representing the start of the range.

Constructors

Link copied to clipboard
constructor(field: String, start: V)

Properties

Link copied to clipboard

The name of the field to which this range condition applies.

Link copied to clipboard
val start: V

The value indicating the start of the range.