Files
divkit/schema/div-action-timer.json
saabrosov a00f001884 Added timer action handler
commit_hash:735901c95a01b6811e98ed47cfece41bea2b09c9
2024-09-23 19:01:21 +03:00

38 lines
637 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_timer",
"properties": {
"type": {
"type": "string",
"enum": [
"timer"
]
},
"id": {
"$description": "translations.json#/div_action_timer_id",
"type": "string"
},
"action": {
"type": "string",
"$description": "translations.json#/div_action_timer_action",
"enum": [
"start",
"stop",
"pause",
"resume",
"cancel",
"reset"
]
}
},
"platforms": [
"android",
"ios"
],
"required": [
"type",
"id",
"action"
]
}