Class: Google::Apis::CalendarV3::TimePeriod

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

Returns a new instance of TimePeriod.



2171
2172
2173
# File 'generated/google/apis/calendar_v3/classes.rb', line 2171

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

Instance Attribute Details

#endDateTime

The (exclusive) end of the time period. Corresponds to the JSON property end

Returns:

  • (DateTime)


2164
2165
2166
# File 'generated/google/apis/calendar_v3/classes.rb', line 2164

def end
  @end
end

#startDateTime

The (inclusive) start of the time period. Corresponds to the JSON property start

Returns:

  • (DateTime)


2169
2170
2171
# File 'generated/google/apis/calendar_v3/classes.rb', line 2169

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2176
2177
2178
2179
# File 'generated/google/apis/calendar_v3/classes.rb', line 2176

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