DateTimeRange

Range of times between two DateTime. For a pointwise date time, use start == end.

google/type/interval.proto serves a similar purpose, but with physical time (we only care about civil time).

JSON representation
{
  "firstDate": {
    object (DateTime)
  },
  "lastDate": {
    object (DateTime)
  }
}
Fields
firstDate

object (DateTime)

Start of the range.

lastDate

object (DateTime)

End of the range