Class: GetStream::Generated::Models::MarkChannelsReadRequest
- Defined in:
- lib/getstream_ruby/generated/models/mark_channels_read_request.rb
Instance Attribute Summary collapse
-
#read_by_channel ⇒ Hash<String, String>
Map of channel ID to last read message ID.
- #user ⇒ UserRequest
- #user_id ⇒ String
Class Method Summary collapse
-
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ MarkChannelsReadRequest
constructor
Initialize with attributes.
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ MarkChannelsReadRequest
Initialize with attributes
23 24 25 26 27 28 |
# File 'lib/getstream_ruby/generated/models/mark_channels_read_request.rb', line 23 def initialize(attributes = {}) super(attributes) @user_id = attributes[:user_id] || attributes['user_id'] || nil @read_by_channel = attributes[:read_by_channel] || attributes['read_by_channel'] || nil @user = attributes[:user] || attributes['user'] || nil end |
Instance Attribute Details
#read_by_channel ⇒ Hash<String, String>
Returns Map of channel ID to last read message ID.
17 18 19 |
# File 'lib/getstream_ruby/generated/models/mark_channels_read_request.rb', line 17 def read_by_channel @read_by_channel end |
#user ⇒ UserRequest
20 21 22 |
# File 'lib/getstream_ruby/generated/models/mark_channels_read_request.rb', line 20 def user @user end |
#user_id ⇒ String
14 15 16 |
# File 'lib/getstream_ruby/generated/models/mark_channels_read_request.rb', line 14 def user_id @user_id end |
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
31 32 33 34 35 36 37 |
# File 'lib/getstream_ruby/generated/models/mark_channels_read_request.rb', line 31 def self.json_field_mappings { user_id: 'user_id', read_by_channel: 'read_by_channel', user: 'user' } end |