Class: Google::Apis::CalendarV3::EventDateTime

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) ⇒ EventDateTime

Returns a new instance of EventDateTime.



1767
1768
1769
# File 'generated/google/apis/calendar_v3/classes.rb', line 1767

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

Instance Attribute Details

#dateDate

The date, in the format "yyyy-mm-dd", if this is an all-day event. Corresponds to the JSON property date

Returns:

  • (Date)


1749
1750
1751
# File 'generated/google/apis/calendar_v3/classes.rb', line 1749

def date
  @date
end

#date_timeDateTime

The time, as a combined date-time value (formatted according to RFC3339). A time zone offset is required unless a time zone is explicitly specified in timeZone. Corresponds to the JSON property dateTime

Returns:

  • (DateTime)


1756
1757
1758
# File 'generated/google/apis/calendar_v3/classes.rb', line 1756

def date_time
  @date_time
end

#time_zoneString

The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) For recurring events this field is required and specifies the time zone in which the recurrence is expanded. For single events this field is optional and indicates a custom time zone for the event start/end. Corresponds to the JSON property timeZone

Returns:

  • (String)


1765
1766
1767
# File 'generated/google/apis/calendar_v3/classes.rb', line 1765

def time_zone
  @time_zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1772
1773
1774
1775
1776
# File 'generated/google/apis/calendar_v3/classes.rb', line 1772

def update!(**args)
  @date = args[:date] if args.key?(:date)
  @date_time = args[:date_time] if args.key?(:date_time)
  @time_zone = args[:time_zone] if args.key?(:time_zone)
end