Class: Google::Apis::CalendarV3::Calendar

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/calendar_v3/classes.rb,
generated/google/apis/calendar_v3/representations.rb,
generated/google/apis/calendar_v3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Calendar

Returns a new instance of Calendar.



195
196
197
# File 'generated/google/apis/calendar_v3/classes.rb', line 195

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Description of the calendar. Optional. Corresponds to the JSON property description

Returns:

  • (String)


161
162
163
# File 'generated/google/apis/calendar_v3/classes.rb', line 161

def description
  @description
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


166
167
168
# File 'generated/google/apis/calendar_v3/classes.rb', line 166

def etag
  @etag
end

#idString

Identifier of the calendar. To retrieve IDs call the calendarList.list() method. Corresponds to the JSON property id

Returns:

  • (String)


172
173
174
# File 'generated/google/apis/calendar_v3/classes.rb', line 172

def id
  @id
end

#kindString

Type of the resource ("calendar#calendar"). Corresponds to the JSON property kind

Returns:

  • (String)


177
178
179
# File 'generated/google/apis/calendar_v3/classes.rb', line 177

def kind
  @kind
end

#locationString

Geographic location of the calendar as free-form text. Optional. Corresponds to the JSON property location

Returns:

  • (String)


182
183
184
# File 'generated/google/apis/calendar_v3/classes.rb', line 182

def location
  @location
end

#summaryString

Title of the calendar. Corresponds to the JSON property summary

Returns:

  • (String)


187
188
189
# File 'generated/google/apis/calendar_v3/classes.rb', line 187

def summary
  @summary
end

#time_zoneString

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

Returns:

  • (String)


193
194
195
# File 'generated/google/apis/calendar_v3/classes.rb', line 193

def time_zone
  @time_zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



200
201
202
203
204
205
206
207
208
# File 'generated/google/apis/calendar_v3/classes.rb', line 200

def update!(**args)
  @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