REST.Json.Types.TJsonDates.TFormat

From RAD Studio API Documentation
Jump to: navigation, search

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

ISO8601

The format of the date-and-time value is ISO 8601.

Unix

The format of the date-and-time value is Unix/Linux.

Mongo

The format of the date-and-time is MongoDB Extended JSON.

Parse

The format of the date-and-time is Parse Date object.

See Also