Hello, I want to return date and time when flow finished its actions to my application.
So my last action in flow "Respond to a PowerApp or flow":

Next step is two lines of code in my application.
1) Button.OnSelect
Notify("Updates from application are moving to source file, it will take a time", Success, 10000);
Set(Time, CSdepartment.Run()) //save result of flow into variable
2)TextLabel:
"Last refresh" & Time.time // Time is a varible from app, where result was stored. time is a
variable from flow
Everything looks correct, but Time.time doesn't return anything.