mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
9 lines
292 B
Python
9 lines
292 B
Python
def create_invoice(args: dict) -> dict:
|
|
# e.g. amount, flight details, etc.
|
|
print("[CreateInvoice] Creating invoice with:", args)
|
|
return {
|
|
"invoiceStatus": "generated",
|
|
"invoiceURL": "https://pay.example.com/invoice/12345",
|
|
"reference": "INV-12345",
|
|
}
|