damsel/proto/repairing.thrift
2019-02-22 18:08:13 +03:00

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 {}