parameters property
The parameters to be passed to the function being executed.
The object type for each parameter should match the expected type in Apps
Script. Parameters cannot be Apps Script-specific object types (such as a
Document
or a Calendar
); they can only be primitive types such as
string
, number
, array
, object
, or boolean
. Optional.
The values for Object must be JSON objects. It can consist of num
,
String
, bool
and null
as well as Map
and List
values.
Implementation
core.List<core.Object?>? parameters;