Add independent payment-service (port 8012, payment_db) with foundation licensing, BYO-PSP, merchant accounts, idempotent requests, callbacks, and immutable ledger. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
172 B
Python
8 lines
172 B
Python
from dataclasses import dataclass
|
|
from uuid import UUID
|
|
@dataclass
|
|
class CreatePaymentRequestCommand:
|
|
tenant_id: UUID
|
|
idempotency_key: str
|
|
payload: dict
|