TimeFrame

constructor(startDate: String? = null, endDate: String? = null)

Parameters

startDate

Start date of the time period (ISO format)

endDate

End date of the time period (ISO format)

Example:

val timeFrame = TimeFrame(
startDate = "2024-01-01",
endDate = "2024-12-31"
)