|
Answer» The different TYPES of variables in MuleSoft are as follows: - Flow Variable: This is USED to either set or remove variables that are tied to a particular message in the current flow.
SYNTAX: #[flowVars.Code] - Record Variable: This is used for the batch processing flows. Unlike any other variable, these are special variable sets that are used only inside a Batch Job.
Syntax: #[recordVars.Code] - Session Variable: This is used to either set or remove variables tied to a particular message for the ENTIRE LIFECYCLE.
Syntax: #[sessionVars.Code]
|