Input$ProgramUpdateInput constructor
Input$ProgramUpdateInput({
- DateTime? from,
- DateTime? to,
- Input$PictureInput? picture,
- Input$FullAddressInput? address,
- String? event,
- String? title,
- String? description,
- Input$ProgramBookingInput? booking,
- List<
Input$ProgramTranslationInput> ? translation,
Implementation
factory Input$ProgramUpdateInput({
DateTime? from,
DateTime? to,
Input$PictureInput? picture,
Input$FullAddressInput? address,
String? event,
String? title,
String? description,
Input$ProgramBookingInput? booking,
List<Input$ProgramTranslationInput>? translation,
}) =>
Input$ProgramUpdateInput._({
if (from != null) r'from': from,
if (to != null) r'to': to,
if (picture != null) r'picture': picture,
if (address != null) r'address': address,
if (event != null) r'event': event,
if (title != null) r'title': title,
if (description != null) r'description': description,
if (booking != null) r'booking': booking,
if (translation != null) r'translation': translation,
});