summaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/billing/responses/tenant-billing-view
blob: 8bc39771b319cad05531b00be7c843d2793523ef (plain) (blame)
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
37
38
{
    "until":"2020-05-28",
    "plan":"some-plan",
    "current":{
        "amount":"123.00",
        "status":"accrued",
        "from":"2020-05-23",
        "items":[
            {
                "id":"some-id",
                "description":"description",
                "amount":"123.00"
            }
        ]
    },
    "additional":{"items":[]},
    "bills":[
        {
            "id":"id-1",
            "from":"2020-05-23",
            "to":"2020-05-28","amount":"123.00",
            "status":"OPEN",
            "statusHistory":[
                {
                    "at":"2020-05-23",
                    "status":"OPEN"
                }
            ],
            "items":[
                {
                    "id":"some-id",
                    "description":"description",
                    "amount":"123.00"
                }
            ]
        }
    ]
}