package api // PaymentsResponse is the JSON contract for GET /api/payments. type PaymentsResponse struct { GroupedPayments map[string][]RawTransaction `json:"grouped_payments"` // person name → rows SortedPeople []string `json:"sorted_people"` AttendanceURL string `json:"attendance_url"` PaymentsURL string `json:"payments_url"` }