Skip to main content
The Declare Variable block is used to define a variable within the workflow. A variable can be declared with one of five data types:
  1. Text
  2. Number
  3. Boolean
  4. List
  5. Time
Each datatype has certain properties that can be used.

Text

Stores string data allowing you to create and manage string-based variables. text The text datatype has the following properties that can be used.

Number

Stores numerical data, representing quantities, counts, or measurements. number The number datatype has the following properties that can be used.

Boolean

Represents true or false values, often used for making conditional decisions or indicating states. boolean The boolean datatype has the following properties that can be used.

List

Stores an ordered collection of items of string or number data type, ideal for managing multiple values. list The list datatype has the following properties that can be used.

Time

Stores specific points in time (e.g., dates, timestamps) or durations (e.g., hours, minutes). time The time datatype has the following properties that can be used.
Check here to learn about how to access the variables inside the workflow.