mirror of
https://github.com/valitydev/damsel.git
synced 2024-11-06 17:55:23 +00:00
6ab8146009
* HG-109 Add basic inspector proxy and minor refactoring. Add terminal selection based of risk scores
34 lines
517 B
Thrift
34 lines
517 B
Thrift
include "base.thrift"
|
|
|
|
namespace java com.rbkmoney.damsel.preauth
|
|
namespace erlang preauth
|
|
|
|
union Status {
|
|
1: Granted granted
|
|
2: Denied denied
|
|
3: Unavailable unavailable
|
|
}
|
|
|
|
struct Granted {
|
|
1: required State state
|
|
}
|
|
|
|
struct Denied {
|
|
1: required State state
|
|
}
|
|
|
|
struct Unavailable {
|
|
1: required State state
|
|
}
|
|
|
|
union State {
|
|
1: State3DSecure state_3dsecure
|
|
}
|
|
|
|
struct State3DSecure {
|
|
1: optional i8 eci
|
|
2: optional string cavv
|
|
3: optional i8 cavv_algo
|
|
4: optional string xid
|
|
}
|