Input$EventTicketBundleInput constructor
Input$EventTicketBundleInput({})
Implementation
factory Input$EventTicketBundleInput({
String? title,
String? zone,
DateTime? from,
DateTime? to,
required String price,
}) =>
Input$EventTicketBundleInput._({
if (title != null) r'title': title,
if (zone != null) r'zone': zone,
if (from != null) r'from': from,
if (to != null) r'to': to,
r'price': price,
});