EventKit's event summary data

When evaluating an EventKit’s event by means of the summary method, EventKit returns a significant amount of event data. For example in a variable named anEKEvent, assigned to an EKStore’s event representing an event in my Google calendar, the following applescript command

	set SummaryData to anEKEvent's summary()

using the summary method yields:

By what method, might I capture this structured data to use in applescript?

I doubt that you can. That’s an undocumented, and hence private, method. The best you could do is parse the string yourself.

Although I assume the answer to be no based upon Shane’s prior reply, by any chance or any method, can Applescript write data to an EKEvent summary?