-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy_inspector.thrift
56 lines (48 loc) · 1.43 KB
/
proxy_inspector.thrift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
include "base.thrift"
include "domain.thrift"
namespace java com.rbkmoney.damsel.proxy_inspector
namespace erlang proxy_inspector
/**
* Набор данных для взаимодействия с инспекторским прокси.
*/
struct Context {
1: required PaymentInfo payment
2: optional domain.ProxyOptions options = {}
}
/**
* Данные платежа, необходимые для инспекции платежа.
*/
struct PaymentInfo {
1: required Shop shop
2: required InvoicePayment payment
3: required Invoice invoice
4: required Party party
}
struct Party {
1: required domain.PartyID party_id
}
struct Shop {
1: required domain.ShopID id
2: required domain.Category category
3: required domain.ShopDetails details
4: required domain.ShopLocation location
}
struct InvoicePayment {
1: required domain.InvoicePaymentID id
2: required base.Timestamp created_at
3: required domain.Payer payer
4: required domain.Cash cost
5: optional bool make_recurrent
6: optional domain.Allocation allocation
}
struct Invoice {
1: required domain.InvoiceID id
2: required base.Timestamp created_at
3: required base.Timestamp due
4: required domain.InvoiceDetails details
5: optional domain.InvoiceClientInfo client_info
}
service InspectorProxy {
domain.RiskScore InspectPayment (1: Context context)
throws (1: base.InvalidRequest ex1)
}