Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions proto/fraudbusters.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,35 @@ exception HistoricalDataServiceException {
2: optional string reason
}

struct ShopContext {
// Идентификатор party
1: required ID party_id
// Идентификатор магазина
2: required ID shop_id
}

struct InspectUserContext {
1: required ClientInfo user_info
2: required list<ShopContext> shop_list
}

struct BlockedShops {
1: required list<ShopContext> shop_list
}

/**
* Интерфейс для проверки
*/
service InspectorService {

/**
* Проверяет какие магазины недоступны для оплаты пользователю
**/
BlockedShops InspectUserShops (1: InspectUserContext context)
throws (1: base.InvalidRequest ex1)

}

/**
* Интерфейс для управления FraudoPayment
*/
Expand Down
Loading