Input$InsertGoogleCalendarInput constructor
Input$InsertGoogleCalendarInput({})
Implementation
factory Input$InsertGoogleCalendarInput({
String? summary,
String? description,
String? location,
String? timeZone,
required String kind,
String? etag,
String? id,
Input$GoogleCalendarConferencePropertiesInput? conferenceProperties,
}) =>
Input$InsertGoogleCalendarInput._({
if (summary != null) r'summary': summary,
if (description != null) r'description': description,
if (location != null) r'location': location,
if (timeZone != null) r'timeZone': timeZone,
r'kind': kind,
if (etag != null) r'etag': etag,
if (id != null) r'id': id,
if (conferenceProperties != null)
r'conferenceProperties': conferenceProperties,
});