gn:act_setTimestampToVar
- Description
- Action used to load special timestamp values to variable which are defined by keywords, or hardcoded value.
- Action returns
- void
Action signatures
Set timestamp to variable
[gn:act_setTimestampToVar]|[target,value]
Parameter Description target
target where the value will be stored value
numeric value or keyword which is used to generate value - Valid value:
- hardcoded value (any
long
number) - keyword
now
- sets current timestamp into variable, currently only this keyword supportsweekday
targetstartToday
- sets timestamp of beginning of current day into variablestartTodayGMT
- sets timestamp of beginning of current day as GMT into variablestartTodayLocal
- sets timestamp of beginning of current day as GMT converted from local timestamp into variablestartTomorrow
- sets timestamp of beginning of next day into variablestartTomorrowGMT
- sets timestamp of beginning of next day as GMT into variablestartTomorrowLocal
- sets timestamp of beginning of next day as GMT converted from local timestamp into variableendToday
- sets timestamp of end of current day into variableendTomorrow
- sets timestamp of end of next day into variable
- hardcoded value (any
- Valid value:
Example
@variable/currentTime
- targetnow
- keyword
- ⤷
[gn:act_setTimestampToVar]|[@variable/currentTime,now]
- ⤷
Set calculated timestamp to variable
[gn:act_setTimestampToVar]|[target,value;expression]
Parameter Description target
target where the value will be stored value
numeric value or keyword which is used to generate value - Valid value:
calculation
keyword
expression
calculation expression (e.g. now-43200000
)- Valid value:
Example
@variable/currentTime
- targetcalculation
- keywordnow-43200000
- expression
- ⤷
[gn:act_setTimestampToVar]|[@variable/nowMinus12h,calculation;now-43200000]
- ⤷