Takes care of creating commands to be sent to the server.
Holds the instance_id of the current environment, which will be sent along with other parameters in each call.
instance_id
A command consists of:
{ method: 'method_name', // api method's name exposed by the server params: {...} // a collection of parameters to be passed to the method API }
Environment's id.
Creates a new command with the environment's id as parameter.
API name.
Parameters for the API method.
Command sent to the server.
Generated using TypeDoc
Takes care of creating commands to be sent to the server.
Holds the
instance_id
of the current environment, which will be sent along with other parameters in each call.A command consists of:
{ method: 'method_name', // api method's name exposed by the server params: {...} // a collection of parameters to be passed to the method API }