Skip to main content

Dagger NodeJS SDK

api/client.gen.FunctionCallArgValue

A value passed as a named argument to a function call.

Hierarchy

  • BaseClient

    FunctionCallArgValue

Constructors

constructor

new FunctionCallArgValue(parent?, _id?, _name?, _value?): FunctionCallArgValue

Constructor is used for internal usage only, do not create object from it.

Parameters

NameType
parent?Object
parent.ctxContext
parent.queryTree?QueryTree[]
_id?FunctionCallArgValueID
_name?string
_value?JSON

Returns

FunctionCallArgValue

Overrides

BaseClient.constructor

Properties

_id

Private Optional Readonly _id: FunctionCallArgValueID = undefined


_name

Private Optional Readonly _name: string = undefined


_value

Private Optional Readonly _value: JSON = undefined

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>