Last updated
message refData {
repeated string words = 1;
}def get_action(state, ref_data, api):
words = ref_data["words"]
# ... Pick from one of these wordsfunction getAction({state, refData, api}) {
let words = refData["words"];
// ... Pick from one of these words
}