Class: GetStream::Generated::Models::ChannelFrozenEvent
- Defined in:
- lib/getstream_ruby/generated/models/channel_frozen_event.rb
Overview
Emitted when a channel is successfully frozen.
Instance Attribute Summary collapse
-
#channel_id ⇒ String
The ID of the channel which was frozen.
-
#channel_type ⇒ String
The type of the channel which was frozen.
-
#cid ⇒ String
The CID of the channel which was frozen.
-
#created_at ⇒ DateTime
Date/time of creation.
- #custom ⇒ Object
- #received_at ⇒ DateTime
-
#type ⇒ String
The type of event: “channel.frozen” in this case.
Class Method Summary collapse
-
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ ChannelFrozenEvent
constructor
Initialize with attributes.
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ ChannelFrozenEvent
Initialize with attributes
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 35 def initialize(attributes = {}) super(attributes) @created_at = attributes[:created_at] || attributes['created_at'] @custom = attributes[:custom] || attributes['custom'] @type = attributes[:type] || attributes['type'] || "channel.frozen" @channel_id = attributes[:channel_id] || attributes['channel_id'] || nil @channel_type = attributes[:channel_type] || attributes['channel_type'] || nil @cid = attributes[:cid] || attributes['cid'] || nil @received_at = attributes[:received_at] || attributes['received_at'] || nil end |
Instance Attribute Details
#channel_id ⇒ String
Returns The ID of the channel which was frozen.
23 24 25 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 23 def channel_id @channel_id end |
#channel_type ⇒ String
Returns The type of the channel which was frozen.
26 27 28 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 26 def channel_type @channel_type end |
#cid ⇒ String
Returns The CID of the channel which was frozen.
29 30 31 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 29 def cid @cid end |
#created_at ⇒ DateTime
Returns Date/time of creation.
14 15 16 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 14 def created_at @created_at end |
#custom ⇒ Object
17 18 19 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 17 def custom @custom end |
#received_at ⇒ DateTime
32 33 34 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 32 def received_at @received_at end |
#type ⇒ String
Returns The type of event: “channel.frozen” in this case.
20 21 22 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 20 def type @type end |
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/getstream_ruby/generated/models/channel_frozen_event.rb', line 47 def self.json_field_mappings { created_at: 'created_at', custom: 'custom', type: 'type', channel_id: 'channel_id', channel_type: 'channel_type', cid: 'cid', received_at: 'received_at' } end |