Hi Takayuki Suzuki,
You can format the estimated wait time manually in Architect. A straightforward approach is to convert the value to minutes using integer division, for example:
Integer division
"You will be attended in approximately " +
ToString(ToInt(Message.EstimatedWaitTime) / 60000) +
" minutes."
or Using substring:
"You will be attended in approximately " +
substring(ToString(ToInt(Message.EstimatedWaitTime)/60000),0,FindString(ToString(ToInt(Message.EstimatedWaitTime)/60000),".")) +
" minutes."
There are several ways to format and the best option depends on your rules.This avoids decimals and produces a clean, user-friendly message.
Hope this helps.
------------------------------
Luiz Rosa
Full stack developer
------------------------------