import { IPitch } from './pitch.interface'; export interface IBooking { id?: string | number; type?: 'bookings'; attributes?: { additionalInfo?: string; created?: string; currency?: string; email?: string; endDate?: string; errorMessage?: string; fullName?: string; phoneNumber?: string; price?: number; amountPaid?: number; product?: string; reasonCancelled?: string; referenceNumber?: string; startDate?: string; status?: string; timeConfirmed?: string; updated?: string; venueVerificationCode?: string; gameGender?: string; address?: string; addressInput?: string; cancellable?: boolean; refundable?: boolean; }; relationships?: { pitch?: { data: IPitch; }; }; }