Class: GetStream::Generated::Models::NotificationMarkUnreadEvent
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::NotificationMarkUnreadEvent
- Defined in:
- lib/getstream_ruby/generated/models/notification_mark_unread_event.rb
Instance Attribute Summary collapse
- #channel ⇒ ChannelResponse
- #channel_id ⇒ String
- #channel_member_count ⇒ Integer
- #channel_type ⇒ String
- #cid ⇒ String
- #created_at ⇒ DateTime
- #first_unread_message_id ⇒ String
- #last_read_at ⇒ DateTime
- #last_read_message_id ⇒ String
- #team ⇒ String
- #thread_id ⇒ String
- #total_unread_count ⇒ Integer
- #type ⇒ String
- #unread_channels ⇒ Integer
- #unread_count ⇒ Integer
- #unread_messages ⇒ Integer
- #unread_threads ⇒ Integer
- #user ⇒ User
Class Method Summary collapse
-
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ NotificationMarkUnreadEvent
constructor
Initialize with attributes.
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ NotificationMarkUnreadEvent
Initialize with attributes
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 68 def initialize(attributes = {}) super(attributes) @channel_id = attributes[:channel_id] || attributes['channel_id'] @channel_member_count = attributes[:channel_member_count] || attributes['channel_member_count'] @channel_type = attributes[:channel_type] || attributes['channel_type'] @cid = attributes[:cid] || attributes['cid'] @created_at = attributes[:created_at] || attributes['created_at'] @first_unread_message_id = attributes[:first_unread_message_id] || attributes['first_unread_message_id'] @last_read_at = attributes[:last_read_at] || attributes['last_read_at'] @total_unread_count = attributes[:total_unread_count] || attributes['total_unread_count'] @unread_channels = attributes[:unread_channels] || attributes['unread_channels'] @unread_count = attributes[:unread_count] || attributes['unread_count'] @unread_messages = attributes[:unread_messages] || attributes['unread_messages'] @unread_threads = attributes[:unread_threads] || attributes['unread_threads'] @type = attributes[:type] || attributes['type'] || "notification.mark_unread" @last_read_message_id = attributes[:last_read_message_id] || attributes['last_read_message_id'] || nil @team = attributes[:team] || attributes['team'] || nil @thread_id = attributes[:thread_id] || attributes['thread_id'] || nil @channel = attributes[:channel] || attributes['channel'] || nil @user = attributes[:user] || attributes['user'] || nil end |
Instance Attribute Details
#channel ⇒ ChannelResponse
62 63 64 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 62 def channel @channel end |
#channel_id ⇒ String
14 15 16 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 14 def channel_id @channel_id end |
#channel_member_count ⇒ Integer
17 18 19 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 17 def channel_member_count @channel_member_count end |
#channel_type ⇒ String
20 21 22 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 20 def channel_type @channel_type end |
#cid ⇒ String
23 24 25 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 23 def cid @cid end |
#created_at ⇒ DateTime
26 27 28 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 26 def created_at @created_at end |
#first_unread_message_id ⇒ String
29 30 31 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 29 def @first_unread_message_id end |
#last_read_at ⇒ DateTime
32 33 34 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 32 def last_read_at @last_read_at end |
#last_read_message_id ⇒ String
53 54 55 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 53 def @last_read_message_id end |
#team ⇒ String
56 57 58 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 56 def team @team end |
#thread_id ⇒ String
59 60 61 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 59 def thread_id @thread_id end |
#total_unread_count ⇒ Integer
35 36 37 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 35 def total_unread_count @total_unread_count end |
#type ⇒ String
50 51 52 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 50 def type @type end |
#unread_channels ⇒ Integer
38 39 40 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 38 def unread_channels @unread_channels end |
#unread_count ⇒ Integer
41 42 43 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 41 def unread_count @unread_count end |
#unread_messages ⇒ Integer
44 45 46 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 44 def @unread_messages end |
#unread_threads ⇒ Integer
47 48 49 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 47 def unread_threads @unread_threads end |
#user ⇒ User
65 66 67 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 65 def user @user end |
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/getstream_ruby/generated/models/notification_mark_unread_event.rb', line 91 def self.json_field_mappings { channel_id: 'channel_id', channel_member_count: 'channel_member_count', channel_type: 'channel_type', cid: 'cid', created_at: 'created_at', first_unread_message_id: 'first_unread_message_id', last_read_at: 'last_read_at', total_unread_count: 'total_unread_count', unread_channels: 'unread_channels', unread_count: 'unread_count', unread_messages: 'unread_messages', unread_threads: 'unread_threads', type: 'type', last_read_message_id: 'last_read_message_id', team: 'team', thread_id: 'thread_id', channel: 'channel', user: 'user' } end |