]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/test/JsDeepConstructorTest.thrift
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / test / JsDeepConstructorTest.thrift
1 struct Simple {
2 1: string value
3 }
4
5 struct Complex {
6 1: Simple struct_field
7 2: list<Simple> struct_list_field
8 3: set<Simple> struct_set_field
9 4: map<string,Simple> struct_map_field
10 5: list<set<map<string,list<Simple>>>> struct_nested_containers_field
11 6: map<string, list<map<string,Simple>> > struct_nested_containers_field2
12 7: list<list<string>> list_of_list_field
13 8: list<list<list<string>>> list_of_list_of_list_field
14 }
15
16 struct ComplexList {
17 1: list<Complex> struct_list_field;
18 }