Class: Teams::Api::MeetingInfo
- Inherits:
-
Model
- Object
- Model
- Teams::Api::MeetingInfo
show all
- Defined in:
- lib/teams/api/meeting_info.rb
Instance Attribute Summary
Attributes inherited from Model
#raw
Instance Method Summary
collapse
Methods inherited from Model
#initialize, #to_h
Instance Method Details
#conversation ⇒ Object
15
16
17
18
|
# File 'lib/teams/api/meeting_info.rb', line 15
def conversation
value = read("conversation")
value ? ConversationAccount.new(value) : nil
end
|
#details ⇒ Object
10
11
12
13
|
# File 'lib/teams/api/meeting_info.rb', line 10
def details
value = read("details")
value.is_a?(Hash) ? ActivityValue.new(value) : value
end
|
#id ⇒ Object
6
7
8
|
# File 'lib/teams/api/meeting_info.rb', line 6
def id
read("id")
end
|
#organizer ⇒ Object
20
21
22
23
|
# File 'lib/teams/api/meeting_info.rb', line 20
def organizer
value = read("organizer")
value ? Account.new(value) : nil
end
|