interface GameShowScheduleTicketTypeInput {
    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;
    sort_order?: number;
}

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
sort_order?: number

Generated using TypeDoc