[bixby] My Bixby capsule works fine if the user selects the time on-screen, but not if they try to select it by voice. I followed the training offered for "duration" in this example, but it doesn't seem to apply enter link description here for a "time"
structure (BedTime) { description (DESCRIPTION) role-of (time.Time) }
action (PrepareUserData) { description ("Prepare user data") type (Search) collect { // Keep this in place to retrieve any previously stored UserData computed-input (previousUserData) { type (UserData) min (Required) max (One) compute { intent { goal: GetUserData } } }
input (username) {
type (UserName)
min (Required) max (One)
}
input (wakeuptime) {
type (WakeupTime)
min (Required) max (One)
}
input (bedtime) {
type (BedTime)
min (Required) max (One)
}
input (message) {
type (Message)
min (Required) max (One)
}
}
output (UserData)
}
This training is "not learned" and when I invoke the utterance, it keeps asking me again
[![Wakeup training
[]4][5]
[5]: https://i.stack.imgur.com/YQvlg.jpgenter code here