DateRange

@Serializable
data class DateRange(val startDate: String? = null, val endDate: String? = null)

Model object representing a date range, which includes start date and end date as calendar dates (YYYY-MM-DD).

Parameters

startDate

Start date of the date range (YYYY-MM-DD).

endDate

Start date of the date range (YYYY-MM-DD).

Constructors

Link copied to clipboard
constructor(startDate: String? = null, endDate: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "endDate")
val endDate: String? = null
Link copied to clipboard
@SerialName(value = "startDate")
val startDate: String? = null