Private
Readonly
connectionPrivate
Readonly
endPrivate
Readonly
loggerPrivate
Readonly
namespaceInvoke a Vlocity interface method in Salesforce with the specified input and options. If the method invocation results in an exception this method will throw an error.
The method to invoke. Can be a string in the format 'class.method' or an object with className and methodName properties.
Optional
input: string | objectInput to pass to the method
Optional
options: string | objectOptions to pass to the method
The result of the method invocation
// Invoke a method with a string
const result = await invoker.invoke('MyClass.myMethod', { input: 'value' });
Private
parse
Class to invoke methods on APEX classes that implement a VlocityObjectInterface in Salesforce using the Salesforce REST API.