damsel/proto/test.thrift
Andrew Mayorov 5e569fcaaa HG-116: Fix a couple of consistency and clarity issues (#97)
* HG-116: Fix a couple of consistency and clarity issues

* HG-116: Introduce JSON-like type

* HG-116: Fix JSON types and introduce msgpack types

* HG-116: Remove the notion of schema revision

* HG-116: Introduce invoice info, better term needed

* HG-116: Rename `SmthPredicate` -> `SmthDecision`

* HG-116: Add missing namespace declarations

* HG-116: Try to get rid of keyword conflicts

* HG-116: Mention missing support for extreme floats
2016-12-13 20:23:13 +03:00

20 lines
310 B
Thrift

/*
* Definitions of trivial services serving test purposes only.
*/
include "base.thrift"
namespace java com.rbkmoney.damsel.test
struct Shout {
1: required string contents
}
exception Failure {
1: required string reason
}
service Echo {
Shout echo (1: Shout shout) throws (1: Failure ex)
}