BusinessHours

@JsonClass(generateAdapter = true)
data class BusinessHours(val startTime: Long, val endTime: Long)

Represents an interval of BusinessHours.

Parameters

startTime

The start time for a given interval, in milliseconds since the epoch.

endTime

The end time for a given interval, in milliseconds since the epoch.

Constructors

Link copied to clipboard
constructor(startTime: Long, endTime: Long)

Properties

Link copied to clipboard
val endTime: Long
Link copied to clipboard
val startTime: Long