Types
class Types
XSD Types for service method parameters.
Constants
| deprecated BOOL |
|
| BOOLEAN |
Defines a boolean. Accepts true, false, and also 1 (for true) and 0 (for false) |
| DATE |
Defines a date value. |
| DATE_TIME |
Defines a date and time value. |
| TIME |
Defines a time value. |
| DECIMAL |
Decimal numbers. xsd:decimal is the datatype that represents the set of all decimal numbers with arbitrary lengths. Its lexical space allows any number of insignificant leading and trailing zeros (after the decimal point). The decimal separator is always a point (.), and no thousands separator may be added. |
| FLOAT |
IEEE 32-bit floating-point. The decimal separator is always a point (.), and no thousands separator may be added. |
| INT |
A signed 32-bit integer. |
| INTEGER |
An integer value. |
| OBJECT |
|
| ARRAY |
An array value
This is only supported in JSON-RPC |
| STRING |
A string. |