Class: MicrosoftGraph::Me::Calendar::CalendarView::Item::EventItemRequestBuilder::EventItemRequestBuilderGetQueryParameters
- Inherits:
-
Object
- Object
- MicrosoftGraph::Me::Calendar::CalendarView::Item::EventItemRequestBuilder::EventItemRequestBuilderGetQueryParameters
- Defined in:
- lib/me/calendar/calendar_view/item/event_item_request_builder.rb
Overview
The calendar view for the calendar. Navigation property. Read-only.
Instance Attribute Summary collapse
-
#end_date_time ⇒ Object
The end date and time of the time range, represented in ISO 8601 format.
-
#select ⇒ Object
Select properties to be returned.
-
#start_date_time ⇒ Object
The start date and time of the time range, represented in ISO 8601 format.
Instance Method Summary collapse
-
#get_query_parameter(original_name) ⇒ Object
Maps the query parameters names to their encoded names for the URI template parsing.
Instance Attribute Details
#end_date_time ⇒ Object
The end date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T20:00:00-08:00
205 206 207 |
# File 'lib/me/calendar/calendar_view/item/event_item_request_builder.rb', line 205 def end_date_time @end_date_time end |
#select ⇒ Object
Select properties to be returned
208 209 210 |
# File 'lib/me/calendar/calendar_view/item/event_item_request_builder.rb', line 208 def select @select end |
#start_date_time ⇒ Object
The start date and time of the time range, represented in ISO 8601 format. For example, 2019-11-08T19:00:00-08:00
211 212 213 |
# File 'lib/me/calendar/calendar_view/item/event_item_request_builder.rb', line 211 def start_date_time @start_date_time end |
Instance Method Details
#get_query_parameter(original_name) ⇒ Object
Maps the query parameters names to their encoded names for the URI template parsing.
217 218 219 220 221 222 223 224 225 |
# File 'lib/me/calendar/calendar_view/item/event_item_request_builder.rb', line 217 def get_query_parameter(original_name) raise StandardError, 'original_name cannot be null' if original_name.nil? case original_name when "select" return "%24select" else return original_name end end |