ReturnType specifies the type of the returned data.

Enumeration data type

enum ReturnType {
    RT_NONE = 0;
    RT_PK = 1;
}
  • RT_NONE: The default value. It indicates that no value is returned.

  • RT_PK: It indicates that the primary key is returned.