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