Class: FunctionCallArgValue
A value passed as a named argument to a function call.
Extends​
BaseClient
Constructors​
Constructor​
new FunctionCallArgValue(
ctx?,_id?,_name?,_value?):FunctionCallArgValue
Constructor is used for internal usage only, do not create object from it.
Parameters​
ctx?​
Context
_id?​
_name?​
string
_value?​
Returns​
FunctionCallArgValue
Overrides​
BaseClient.constructor
Methods​
id()​
id():
Promise<FunctionCallArgValueID>
A unique identifier for this FunctionCallArgValue.
Returns​
Promise<FunctionCallArgValueID>
name()​
name():
Promise<string>
The name of the argument.
Returns​
Promise<string>
value()​
value():
Promise<JSON>
The value of the argument represented as a JSON serialized string.
Returns​
Promise<JSON>