TimeResponse

data class TimeResponse(val hour: Int, val minute: Int? = null)

The time of day.

Constructors

Link copied to clipboard
constructor(hour: Int, minute: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val hour: Int

The hour element of the time. Allowed values range from 0 (start of the selected day) to 24 (end of the selected day). Hour value 24 cannot be combined with any other minute value but 0.

Link copied to clipboard
val minute: Int? = null

The minute element of the time. Allowed values are 0 and 30. If not specified, its value defaults to 0.