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 | [{
"number": 1,
"name": "Membership fee 2016, Junior",
"comment": "Yearly invoice for junior membership",
"issued": "2016-03-10",
"shipment": {
"preferred": "email",
"sms": {
"message": "Your sms message text"
}
},
"_links": {
"self": {
"uri": "/identical/1"
},
"recipients": {
"uri": "/identical/1/recipients"
}
}
}, {
"number": 2,
"name": "Membership fee 2016, Senior",
"comment": "Yearly invoice for senior membership",
"issued": "2016-03-10",
"shipment": {
"preferred": "paper"
},
"_links": {
"self": {
"uri": "/identical/2"
},
"recipients": {
"uri": "/identical/2/recipients"
}
}
}]
|