mirror of
https://github.com/valitydev/damsel.git
synced 2024-11-06 17:55:23 +00:00
27 lines
517 B
Thrift
27 lines
517 B
Thrift
/**
|
|
* Определения для задач "починки" различных машин.
|
|
*/
|
|
|
|
namespace java com.rbkmoney.damsel.repairing
|
|
namespace erlang repair
|
|
|
|
include "base.thrift"
|
|
|
|
struct ComplexAction {
|
|
1: optional TimerAction timer
|
|
3: optional RemoveAction remove
|
|
}
|
|
|
|
union TimerAction {
|
|
1: SetTimerAction set_timer
|
|
2: UnsetTimerAction unset_timer
|
|
}
|
|
|
|
struct SetTimerAction {
|
|
1: required base.Timer timer
|
|
}
|
|
|
|
struct UnsetTimerAction {}
|
|
|
|
struct RemoveAction {}
|