REST.Json.Types.TJsonDateFormat

From RAD Studio API Documentation
Jump to: navigation, search

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

jdfISO8601

Date-and-time value in the ISO 8601 format.

jdfUnix

Unix/Linux-style date-and-time value.

jdfMongo

Date-and-time value in MongoDB Extended JSON format.

jdfParse

Date-and-time value in the Parse Date format.

See Also