Class: FunctionCallArgValue
A value passed as a named argument to a function call.
Extends
BaseClient
Constructors
new FunctionCallArgValue()
new FunctionCallArgValue(
parent
?,_id
?,_name
?,_value
?):FunctionCallArgValue
Constructor is used for internal usage only, do not create object from it.
Parameters
• parent?
• parent.ctx?: Context
• parent.queryTree?: QueryTree
[]
• _id?: FunctionCallArgValueID
• _name?: string
• _value?: JSON
Returns
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
>