The description of the current Add-On module.
Defined in the object/[addons]
section of the Script, as in the example below:
{
"description": "This test AddOn manipulates with the source Json string right before the target update. It extracts the Json value from the LongText__c, then stores the extracted string into the TEST1__c."
}
ISfdmuRunCustomAddonContext
The name of the triggered Add-On event.
async onExecute(context: ISfdmuRunCustomAddonContext, args: any): Promise<ISfdmuRunCustomAddonResult> {
console.log(context.eventName); // For the BeforeUpdate event, outputs 'onBeforeUpdate'
}
ISfdmuRunCustomAddonContext
The name of the current Add-On module, including it's type (core or custom)
custom:CustomSfdmuRunAddonTemplate
, core:ExportFile
ISfdmuRunCustomAddonContext
The display name of the processed SF object (typically it's the object label).
Account Team Member
ISfdmuRunCustomAddonContext
The Api name of the SF object which is being currently processed by the Plugin.
AccountTeamMember
ISfdmuRunCustomAddonContext
Generated using TypeDoc | SFDMU Help Center | View on Github
The Custom Add-On module runtime context.
Export
Interface
ISfdmuRunCustomAddonContext