REST.JsonReflect.TReverterType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TReverterType = (rtObjects, rtStrings, rtTypeObjects, rtTypeStrings, rtObject, rtString, rtTypeObject, rtTypeString);

C++

enum DECLSPEC_DENUM TReverterType : unsigned char { rtObjects, rtStrings, rtTypeObjects, rtTypeStrings, rtObject, rtString, rtTypeObject, rtTypeString };

Properties

Type Visibility Source Unit Parent
enum public
REST.JsonReflect.pas
REST.JsonReflect.hpp
REST.JsonReflect REST.JsonReflect

Description

Type of a reverter event that determines the type of items that the event reverts.

A reverter type may indicate that an event reverts any of the following types of items:

Value Type of item

rtString

String

rtStrings

Array of strings

rtObject

Object

rtObjects

Array of objects

rtTypeString

Field with a string as value

rtTypeStrings

Field with an array of strings as value

rtTypeObject

Field with an object as value

rtTypeObjects

Field with an array of objects as value

See Also