ElementSelected
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"header": {
"namespace": "Display",
"name": "ElementSelected",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.0"
},
"payload": {
"playServiceId": "{{STRING}}",
"token": "{{STRING}}"
}
}
|
parameter |
type |
mandatory |
description |
token |
string |
Y |
|
CloseSucceeded
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"header": {
"namespace": "Display",
"name": "CloseSucceeded",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.1"
},
"payload": {
"playServiceId": "{{STRING}}"
}
}
|
CloseFailed
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
|
{
"header": {
"namespace": "Display",
"name": "CloseFailed",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.1"
},
"payload": {
"playServiceId": "{{STRING}}"
}
}
|
ControlFocusSucceeded
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"header": {
"namespace": "Display",
"name": "ControlFocusSucceeded",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.4"
},
"payload": {
"playServiceId": "{{STRING}}",
"direction": "{{STRING}}"
}
}
|
parameter |
type |
mandatory |
description |
direction |
string |
N |
PREVIOUS, NEXT |
ControlFocusFailed
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"header": {
"namespace": "Display",
"name": "ControlFocusFailed",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.4"
},
"payload": {
"playServiceId": "{{STRING}}",
"direction": "{{STRING}}"
}
}
|
parameter |
type |
mandatory |
description |
direction |
string |
N |
PREVIOUS, NEXT |
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"header": {
"namespace": "Display",
"name": "ControlScrollSucceeded",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.4"
},
"payload": {
"playServiceId": "{{STRING}}",
"direction": "{{STRING}}"
}
}
|
parameter |
type |
mandatory |
description |
direction |
string |
N |
PREVIOUS, NEXT |
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{
"header": {
"namespace": "Display",
"name": "ControlScrollFailed",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.4"
},
"payload": {
"playServiceId": "{{STRING}}",
"direction": "{{STRING}}"
}
}
|
parameter |
type |
mandatory |
description |
direction |
string |
N |
PREVIOUS, NEXT |
TriggerChild
다른 Play에 의해 실행되며 template을 child로 노출시켜야 하는 경우 사용하는 Event
복사성공!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
"header": {
"namespace": "Display",
"name": "TriggerChild",
"messageId": "{{STRING}}",
"dialogRequestId": "{{STRING}}",
"version": "1.9"
},
"payload": {
"playServiceId": "{{STRING}}",
"parentToken": "{{STRING}}",
"data": { # arbitrary JSON object },
}
}
|
parameter |
type |
mandatory |
description |
parentToken |
string |
Y |
Child를 trigger시킨 Parent template의 token |
data |
object |
Y |
임의의 JSON object |