Files
refactor-kata/kata/billing/original/state.json
T
2026-05-20 17:42:01 -06:00

15 lines
291 B
JSON

{
"invoices": [
{
"id": "inv-1",
"status": "draft",
"total": 0,
"finalizedAt": null,
"lines": [
{ "description": "Hosting", "quantity": 2, "unitPrice": 60 },
{ "description": "Support", "quantity": 1, "unitPrice": 95 }
]
}
]
}