Running Subscriptions¶
A collection of all running subscription fees in the leaf category.
field | type | constraints | default | Req | W | U |
---|---|---|---|---|---|---|
durationDays | int | positive | yes | no | no | |
fee | int | positive | yes | no | no |
durationDays
The durations of the running subscription in days.
fee
The fee of the running subscription in Euro cents.
Example¶
...
"runningSubscriptions": [
{
"durationDays": 7,
"fee": 1250
},
{
"durationDays": 14,
"fee": 1750
},
{
"durationDays": 28,
"fee": 2500
}
]
...