Default Data Structure Field Values

Default values that are placed in data structure properties when they have just been initialized.

Data Type
Default value
Description

''"

Empty string

false

False value

CURRENT_DATETIME

The current date/time value in UTC timezone

[]

Empty array

{}

Empty map

{

"Integer_Property": 0,

"Float_Property": 0,

"String_Property": '',

"Boolean_Property": false,

"Date_Property": 'CURRENT_DATETIME',

"Array_Property": [],

"Map_Property": {},

"Object_Property": null,

}

All properties are initialized with default values, except for properties with types extended from the Object structure; such properties will remain unitialized (equal to null).

Last updated