We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3dc79e commit fa97097Copy full SHA for fa97097
Project/Sources/Classes/GoogleCalendar.4dm
@@ -280,6 +280,10 @@ Function getEvents($inParameters : Object) : Object
280
var $additionalAttributes : Collection:=["kind"; "etag"; "summary"; "calendarId"; "description"; "updated"; "timeZone"; "accessRole"; "defaultReminders"]
281
var $result : cs.GoogleEventList:=cs.GoogleEventList.new(This._getOAuth2Provider(); $URL; $headers; $additionalAttributes)
282
283
+ If ((Value type($result.calendarId)=Is undefined) && (Value type($inParameters.calendarId)=Is text) && (Length(String($inParameters.calendarId))>0))
284
+ $result.calendarId:=$inParameters.calendarId
285
+ End if
286
+
287
Super._throwErrors(False)
288
289
return $result
0 commit comments