houdini/docs/event_definitions/Nonprofit/Event/EventDiscount.ts
2021-01-13 11:10:18 -06:00

15 lines
No EOL
432 B
TypeScript

// License: LGPL-3.0-or-later
import type { IdType, HoudiniObject } from '../../common';
import type Nonprofit from '..';
import type Event from '.';
import type { TicketLevel } from './TicketLevel';
/**
* Describes an EventDiscount (shell)
*/
export interface EventDiscount extends HoudiniObject {
event: IdType | Event;
nonprofit: IdType | Nonprofit;
object: "event_discount";
ticket_levels: IdType[] | TicketLevel[];
}