19 lines
362 B
TypeScript
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;
|
|
}
|