Class: EnvVariable
An environment variable name and value.
Extends
BaseClient
Constructors
Constructor
new EnvVariable(
ctx?,_id?,_name?,_value?):EnvVariable
Constructor is used for internal usage only, do not create object from it.
Parameters
ctx?
Context
_id?
_name?
string
_value?
string
Returns
EnvVariable
Overrides
BaseClient.constructor
Methods
id()
id():
Promise<ID>
A unique identifier for this EnvVariable.
Returns
Promise<ID>
name()
name():
Promise<string>
The environment variable name.
Returns
Promise<string>
value()
value():
Promise<string>
The environment variable value.
Returns
Promise<string>