Files
gridpilot.gg/apps/website/lib/view-data/PaymentViewData.ts
2026-01-23 15:30:23 +01:00

19 lines
362 B
TypeScript

/**
* ViewData for Payment
* This is the JSON-serializable input for the Template.
*/
export interface PaymentViewData {
id: string;
type: string;
amount: number;
platformFee: number;
netAmount: number;
payerId: string;
payerType: string;
leagueId: string;
seasonId?: string;
status: string;
createdAt: string;
completedAt?: string;
}