DateTimeInterval
Rappresenta un intervallo tra due punti DateTime.
I campi timeZone di startTime e di endTime devono corrispondere.
Rappresentazione JSON |
{
"startTime": {
object (DateTime )
},
"endTime": {
object (DateTime )
}
} |
Campi |
startTime |
object (DateTime )
Punto dati iniziale dell'intervallo (incluso). Il fuso orario del punto di arrivo deve corrispondere al fuso orario del punto di partenza.
|
endTime |
object (DateTime )
Punto dati finale dell'intervallo (esclusivo). Il fuso orario del punto di arrivo deve corrispondere al fuso orario del punto di partenza.
|
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2022-12-20 UTC.
[null,null,["Ultimo aggiornamento 2022-12-20 UTC."],[[["Represents an interval of time between two DateTime points, inclusive of the start and exclusive of the end."],["The `startTime` and `endTime` fields must have matching time zones."],["The interval is represented using JSON, with `startTime` and `endTime` objects specifying the boundaries."]]],["The core content describes a time interval defined by a start and end time. Both `startTime` and `endTime` are DateTime objects. The JSON representation shows these as the key fields. The time zone of the `endTime` must correspond to the timezone of the `startTime`. The interval's `startTime` is inclusive, and the `endTime` is exclusive.\n"]]