DateRange

@Serializable
data class DateRange(val startedAt: String, val endedAt: String)

Represents a reporting window's start and end dates.

Constructors

Link copied to clipboard
constructor(startedAt: String, endedAt: String)

Properties

Link copied to clipboard
@SerialName(value = "ended_at")
val endedAt: String

the reporting window's end date, in RFC3339 format.

Link copied to clipboard
@SerialName(value = "started_at")
val startedAt: String

the reporting window's start date, in RFC3339 format.