mirror of
https://github.com/valitydev/damsel.git
synced 2024-11-06 09:45:21 +00:00
dac2cb5994
Also switch to valitydev/rebar3-thrift-compiler 0.4 / valitydev/thrift 0.14.2.3
57 lines
1.4 KiB
Thrift
57 lines
1.4 KiB
Thrift
include "base.thrift"
|
||
include "domain.thrift"
|
||
|
||
namespace java dev.vality.damsel.proxy_inspector
|
||
namespace erlang dmsl.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)
|
||
}
|