timestampOutputFormat property
The API output format for a timestamp.
This offers more explicit control over the timestamp output format as
compared to the existing use_int64_timestamp
option.
Optional. Possible string values are:
- "TIMESTAMP_OUTPUT_FORMAT_UNSPECIFIED" : Corresponds to default API output behavior, which is FLOAT64.
- "FLOAT64" : Timestamp is output as float64 seconds since Unix epoch.
- "INT64" : Timestamp is output as int64 microseconds since Unix epoch.
- "ISO8601_STRING" : Timestamp is output as ISO 8601 String ("YYYY-MM-DDTHH:MM:SS.FFFFFFFFFFFFZ").
Implementation
core.String? timestampOutputFormat;