Class: GetStream::Generated::Models::Incident
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::Incident
show all
- Defined in:
- lib/getstream_ruby/generated/models/incident.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 = {}) ⇒ Incident
Initialize with attributes
26
27
28
29
30
31
32
|
# File 'lib/getstream_ruby/generated/models/incident.rb', line 26
def initialize(attributes = {})
super(attributes)
@from = attributes[:from] || attributes['from']
@peak_concurrency = attributes[:peak_concurrency] || attributes['peak_concurrency']
@to = attributes[:to] || attributes['to']
@viewers_interrupted = attributes[:viewers_interrupted] || attributes['viewers_interrupted']
end
|
Instance Attribute Details
#from ⇒ String
14
15
16
|
# File 'lib/getstream_ruby/generated/models/incident.rb', line 14
def from
@from
end
|
#peak_concurrency ⇒ Integer
17
18
19
|
# File 'lib/getstream_ruby/generated/models/incident.rb', line 17
def peak_concurrency
@peak_concurrency
end
|
#to ⇒ String
20
21
22
|
# File 'lib/getstream_ruby/generated/models/incident.rb', line 20
def to
@to
end
|
#viewers_interrupted ⇒ Integer
23
24
25
|
# File 'lib/getstream_ruby/generated/models/incident.rb', line 23
def viewers_interrupted
@viewers_interrupted
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/incident.rb', line 35
def self.json_field_mappings
{
from: 'from',
peak_concurrency: 'peak_concurrency',
to: 'to',
viewers_interrupted: 'viewers_interrupted'
}
end
|