interface GameShowFestivalTicketTypeInput {
    currency: string;
    description?: null | string;
    is_active?: boolean;
    kind: "other" | "early_bird" | "regular";
    name: string;
    price_cents: number;
    quantity_available?: null | number;
    sales_end_at?: null | string;
    sales_start_at?: null | string;
    schedule_item_id?: null | string;
    schedule_item_ids?: null | string[];
    scope: "session" | "festival" | "track" | "bundle";
    sort_order?: number;
    track_block_id?: null | string;
}

Hierarchy

Properties

currency: string
description?: null | string
is_active?: boolean
kind: "other" | "early_bird" | "regular"
name: string
price_cents: number
quantity_available?: null | number
sales_end_at?: null | string
sales_start_at?: null | string
schedule_item_id?: null | string
schedule_item_ids?: null | string[]
scope: "session" | "festival" | "track" | "bundle"
sort_order?: number
track_block_id?: null | string

Generated using TypeDoc