REST.Json.Types.TJsonDates.TFormat
Delphi
TFormat = (ISO8601, Unix, Mongo, Parse);
C++
enum DECLSPEC_DENUM TFormat : unsigned char { ISO8601, Unix, Mongo, Parse };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | REST.Json.Types.pas REST.Json.Types.hpp |
REST.Json.Types | TJsonDates |
Description
Specifies the format of the date in the JSON object.
Use TFormat to specify the type of the date in the JSON object.
| Value | Meaning |
|---|---|
|
|
The format of the date-and-time value is ISO 8601. |
|
|
The format of the date-and-time value is Unix/Linux. |
|
|
The format of the date-and-time is MongoDB Extended JSON. |
|
|
The format of the date-and-time is Parse Date object. |