// License: LGPL-3.0-or-later import type { HouID, HoudiniObject, HoudiniEvent, Amount, IDType} from '../../common'; import type Nonprofit from '..'; import type Event from '.'; import type { EventDiscount, Ticket } from '.'; import Supporter from '../Supporter'; import { Transaction } from '../Supporter'; export interface TicketPurchase extends HoudiniObject { amount: Amount; event: IDType | Event; event_discount?: IDType | EventDiscount | null; nonprofit: IDType | Nonprofit; object: 'ticket_purchase'; supporter: IDType | Supporter; tickets: Ticket[] | HouID[]; transaction: HouID | Transaction; } export type TicketPurchaseCreated = HoudiniEvent<'ticket_purchase.created', TicketPurchase>; export type TicketPurchaseUpdated = HoudiniEvent<'ticket_purchase.updated', TicketPurchase>; export type TicketPurchaseDeleted = HoudiniEvent<'ticket_purchase.deleted', TicketPurchase>;