Input$EventInviteUpdateInput constructor
Input$EventInviteUpdateInput({})
Implementation
factory Input$EventInviteUpdateInput({
DateTime? from,
DateTime? to,
String? title,
String? program,
String? invitee,
Input$EventInvitorInput? invitor,
}) =>
Input$EventInviteUpdateInput._({
if (from != null) r'from': from,
if (to != null) r'to': to,
if (title != null) r'title': title,
if (program != null) r'program': program,
if (invitee != null) r'invitee': invitee,
if (invitor != null) r'invitor': invitor,
});