Class: GetStream::Generated::Models::UserMessagesDeletedEvent
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::UserMessagesDeletedEvent
- Defined in:
- lib/getstream_ruby/generated/models/user_messages_deleted_event.rb
Overview
This event is sent when a user’s message get deleted. The event contains information about the user whose messages got deleted.
Instance Attribute Summary collapse
- #channel_custom ⇒ Object
-
#channel_id ⇒ String
The ID of the channel where the target user’s messages were deleted.
- #channel_member_count ⇒ Integer
- #channel_message_count ⇒ Integer
-
#channel_type ⇒ String
The type of the channel where the target user’s messages were deleted.
-
#cid ⇒ String
The CID of the channel where the target user’s messages were deleted.
-
#created_at ⇒ DateTime
Date/time of creation.
- #custom ⇒ Object
-
#hard_delete ⇒ Boolean
Whether Messages were hard deleted.
- #received_at ⇒ DateTime
-
#team ⇒ String
The team of the channel where the target user’s messages were deleted.
-
#type ⇒ String
The type of event: “user.messages.deleted” in this case.
- #user ⇒ UserResponseCommonFields
Class Method Summary collapse
-
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ UserMessagesDeletedEvent
constructor
Initialize with attributes.
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ UserMessagesDeletedEvent
Initialize with attributes
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 53 def initialize(attributes = {}) super(attributes) @created_at = attributes[:created_at] || attributes['created_at'] @custom = attributes[:custom] || attributes['custom'] @user = attributes[:user] || attributes['user'] @type = attributes[:type] || attributes['type'] || "user.messages.deleted" @channel_id = attributes[:channel_id] || attributes['channel_id'] || nil @channel_member_count = attributes[:channel_member_count] || attributes['channel_member_count'] || nil @channel_message_count = attributes[:channel_message_count] || attributes['channel_message_count'] || nil @channel_type = attributes[:channel_type] || attributes['channel_type'] || nil @cid = attributes[:cid] || attributes['cid'] || nil @hard_delete = attributes[:hard_delete] || attributes['hard_delete'] || nil @received_at = attributes[:received_at] || attributes['received_at'] || nil @team = attributes[:team] || attributes['team'] || nil @channel_custom = attributes[:channel_custom] || attributes['channel_custom'] || nil end |
Instance Attribute Details
#channel_custom ⇒ Object
50 51 52 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 50 def channel_custom @channel_custom end |
#channel_id ⇒ String
Returns The ID of the channel where the target user’s messages were deleted.
26 27 28 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 26 def channel_id @channel_id end |
#channel_member_count ⇒ Integer
29 30 31 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 29 def channel_member_count @channel_member_count end |
#channel_message_count ⇒ Integer
32 33 34 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 32 def @channel_message_count end |
#channel_type ⇒ String
Returns The type of the channel where the target user’s messages were deleted.
35 36 37 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 35 def channel_type @channel_type end |
#cid ⇒ String
Returns The CID of the channel where the target user’s messages were deleted.
38 39 40 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 38 def cid @cid end |
#created_at ⇒ DateTime
Returns Date/time of creation.
14 15 16 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 14 def created_at @created_at end |
#custom ⇒ Object
17 18 19 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 17 def custom @custom end |
#hard_delete ⇒ Boolean
Returns Whether Messages were hard deleted.
41 42 43 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 41 def hard_delete @hard_delete end |
#received_at ⇒ DateTime
44 45 46 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 44 def received_at @received_at end |
#team ⇒ String
Returns The team of the channel where the target user’s messages were deleted.
47 48 49 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 47 def team @team end |
#type ⇒ String
Returns The type of event: “user.messages.deleted” in this case.
23 24 25 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 23 def type @type end |
#user ⇒ UserResponseCommonFields
20 21 22 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 20 def user @user end |
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/getstream_ruby/generated/models/user_messages_deleted_event.rb', line 71 def self.json_field_mappings { created_at: 'created_at', custom: 'custom', user: 'user', type: 'type', channel_id: 'channel_id', channel_member_count: 'channel_member_count', channel_message_count: 'channel_message_count', channel_type: 'channel_type', cid: 'cid', hard_delete: 'hard_delete', received_at: 'received_at', team: 'team', channel_custom: 'channel_custom' } end |