class Google::Apis::CalendarV3::Event::ExtendedProperties

Extended properties of the event.

Attributes

private[RW]

Properties that are private to the copy of the event that appears on this calendar. Corresponds to the JSON property `private` @return [Hash<String,String>]

shared[RW]

Properties that are shared between copies of the event on other attendees' calendars. Corresponds to the JSON property `shared` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/calendar_v3/classes.rb, line 1437
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/calendar_v3/classes.rb, line 1442
def update!(**args)
  @private = args[:private] if args.key?(:private)
  @shared = args[:shared] if args.key?(:shared)
end