Class: GetStream::Generated::Models::TopBroadcast
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::TopBroadcast
show all
- Defined in:
- lib/getstream_ruby/generated/models/top_broadcast.rb
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ TopBroadcast
Initialize with attributes
26
27
28
29
30
31
32
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 26
def initialize(attributes = {})
super(attributes)
@call_cid = attributes[:call_cid] || attributes['call_cid']
@hours_watched = attributes[:hours_watched] || attributes['hours_watched']
@peak_concurrent_viewers = attributes[:peak_concurrent_viewers] || attributes['peak_concurrent_viewers']
@poor_pct = attributes[:poor_pct] || attributes['poor_pct'] || nil
end
|
Instance Attribute Details
#call_cid ⇒ String
14
15
16
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 14
def call_cid
@call_cid
end
|
#hours_watched ⇒ Float
17
18
19
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 17
def hours_watched
@hours_watched
end
|
#peak_concurrent_viewers ⇒ Integer
20
21
22
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 20
def peak_concurrent_viewers
@peak_concurrent_viewers
end
|
#poor_pct ⇒ Float
23
24
25
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 23
def poor_pct
@poor_pct
end
|
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
35
36
37
38
39
40
41
42
|
# File 'lib/getstream_ruby/generated/models/top_broadcast.rb', line 35
def self.json_field_mappings
{
call_cid: 'call_cid',
hours_watched: 'hours_watched',
peak_concurrent_viewers: 'peak_concurrent_viewers',
poor_pct: 'poor_pct'
}
end
|