houdini/docs/event_definitions/Nonprofit/Event/index.ts
Eric Schultz 2e8821efdf Initial Transaction and OfflineTransaction support
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
2021-04-13 10:47:37 -05:00

16 lines
No EOL
398 B
TypeScript

// License: LGPL-3.0-or-later
import { IDType, HoudiniObject } from '../../common';
import Nonprofit from '..';
export default interface Event extends HoudiniObject {
end_date: Date;
name: string;
nonprofit: IDType | Nonprofit;
object: "event";
start_date: Date;
}
export * from './TicketLevel';
export * from './EventDiscount';
export * from './TicketPurchase';
export * from './Ticket';