class Google::Apis::CalendarV3::Calendar
Attributes
Conferencing properties for this calendar, for example what types of conferences are allowed. Corresponds to the JSON property `conferenceProperties` @return [Google::Apis::CalendarV3::ConferenceProperties]
Description of the calendar. Optional. Corresponds to the JSON property `description` @return [String]
ETag of the resource. Corresponds to the JSON property `etag` @return [String]
Identifier of the calendar. To retrieve IDs call the calendarList.list() method. Corresponds to the JSON property `id` @return [String]
Type of the resource (“calendar#calendar”). Corresponds to the JSON property `kind` @return [String]
Geographic location of the calendar as free-form text. Optional. Corresponds to the JSON property `location` @return [String]
Title of the calendar. Corresponds to the JSON property `summary` @return [String]
The time zone of the calendar. (Formatted as an IANA Time Zone Database name, e.g. “Europe/Zurich”.) Optional. Corresponds to the JSON property `timeZone` @return [String]
Public Class Methods
# File lib/google/apis/calendar_v3/classes.rb, line 201 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/calendar_v3/classes.rb, line 206 def update!(**args) @conference_properties = args[:conference_properties] if args.key?(:conference_properties) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @location = args[:location] if args.key?(:location) @summary = args[:summary] if args.key?(:summary) @time_zone = args[:time_zone] if args.key?(:time_zone) end