Class: GetStream::Generated::Models::CreateChannelTypeRequest
- Inherits:
-
BaseModel
- Object
- BaseModel
- GetStream::Generated::Models::CreateChannelTypeRequest
- Defined in:
- lib/getstream_ruby/generated/models/create_channel_type_request.rb
Instance Attribute Summary collapse
-
#automod ⇒ String
Automod.
-
#automod_behavior ⇒ String
Automod behavior.
-
#blocklist ⇒ String
Blocklist.
-
#blocklist_behavior ⇒ String
Blocklist behavior.
-
#blocklists ⇒ Array<BlockListOptions>
Blocklists.
-
#commands ⇒ Array<String>
List of commands that channel supports.
-
#connect_events ⇒ Boolean
Connect events.
-
#count_messages ⇒ Boolean
Count messages in channel.
-
#custom_events ⇒ Boolean
Custom events.
- #delivery_events ⇒ Boolean
-
#grants ⇒ Hash<String, Array<String>>
List of grants for the channel type.
-
#mark_messages_pending ⇒ Boolean
Mark messages pending.
-
#max_message_length ⇒ Integer
Max message length.
-
#message_retention ⇒ String
Message retention.
-
#mutes ⇒ Boolean
Mutes.
-
#name ⇒ String
Channel type name.
-
#partition_size ⇒ Integer
Partition size.
-
#partition_ttl ⇒ String
Partition TTL.
-
#permissions ⇒ Array<PolicyRequest>
List of permissions for the channel type.
-
#polls ⇒ Boolean
Polls.
-
#push_notifications ⇒ Boolean
Push notifications.
-
#reactions ⇒ Boolean
Reactions.
-
#read_events ⇒ Boolean
Read events.
-
#replies ⇒ Boolean
Replies.
-
#search ⇒ Boolean
Search.
-
#shared_locations ⇒ Boolean
Enables shared location messages.
- #skip_last_msg_update_for_system_msgs ⇒ Boolean
-
#typing_events ⇒ Boolean
Typing events.
-
#uploads ⇒ Boolean
Uploads.
-
#url_enrichment ⇒ Boolean
URL enrichment.
- #user_message_reminders ⇒ Boolean
Class Method Summary collapse
-
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ CreateChannelTypeRequest
constructor
Initialize with attributes.
Methods inherited from BaseModel
#==, #inspect, omit_empty_fields, #to_h, #to_json
Constructor Details
#initialize(attributes = {}) ⇒ CreateChannelTypeRequest
Initialize with attributes
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 107 def initialize(attributes = {}) super(attributes) @automod = attributes[:automod] || attributes['automod'] @automod_behavior = attributes[:automod_behavior] || attributes['automod_behavior'] @max_message_length = attributes[:max_message_length] || attributes['max_message_length'] @name = attributes[:name] || attributes['name'] @blocklist = attributes[:blocklist] || attributes['blocklist'] || nil @blocklist_behavior = attributes[:blocklist_behavior] || attributes['blocklist_behavior'] || nil @connect_events = attributes[:connect_events] || attributes['connect_events'] || nil @count_messages = attributes[:count_messages] || attributes['count_messages'] || nil @custom_events = attributes[:custom_events] || attributes['custom_events'] || nil @delivery_events = attributes[:delivery_events] || attributes['delivery_events'] || nil @mark_messages_pending = attributes[:mark_messages_pending] || attributes['mark_messages_pending'] || nil @message_retention = attributes[:message_retention] || attributes['message_retention'] || nil @mutes = attributes[:mutes] || attributes['mutes'] || nil @partition_size = attributes[:partition_size] || attributes['partition_size'] || nil @partition_ttl = attributes[:partition_ttl] || attributes['partition_ttl'] || nil @polls = attributes[:polls] || attributes['polls'] || nil @push_notifications = attributes[:push_notifications] || attributes['push_notifications'] || nil @reactions = attributes[:reactions] || attributes['reactions'] || nil @read_events = attributes[:read_events] || attributes['read_events'] || nil @replies = attributes[:replies] || attributes['replies'] || nil @search = attributes[:search] || attributes['search'] || nil @shared_locations = attributes[:shared_locations] || attributes['shared_locations'] || nil @skip_last_msg_update_for_system_msgs = attributes[:skip_last_msg_update_for_system_msgs] || attributes['skip_last_msg_update_for_system_msgs'] || nil @typing_events = attributes[:typing_events] || attributes['typing_events'] || nil @uploads = attributes[:uploads] || attributes['uploads'] || nil @url_enrichment = attributes[:url_enrichment] || attributes['url_enrichment'] || nil @user_message_reminders = attributes[:user_message_reminders] || attributes['user_message_reminders'] || nil @blocklists = attributes[:blocklists] || attributes['blocklists'] || nil @commands = attributes[:commands] || attributes['commands'] || nil @permissions = attributes[:permissions] || attributes['permissions'] || nil @grants = attributes[:grants] || attributes['grants'] || nil end |
Instance Attribute Details
#automod ⇒ String
Returns Automod.
14 15 16 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 14 def automod @automod end |
#automod_behavior ⇒ String
Returns Automod behavior.
17 18 19 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 17 def automod_behavior @automod_behavior end |
#blocklist ⇒ String
Returns Blocklist.
26 27 28 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 26 def blocklist @blocklist end |
#blocklist_behavior ⇒ String
Returns Blocklist behavior.
29 30 31 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 29 def blocklist_behavior @blocklist_behavior end |
#blocklists ⇒ Array<BlockListOptions>
Returns Blocklists.
95 96 97 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 95 def blocklists @blocklists end |
#commands ⇒ Array<String>
Returns List of commands that channel supports.
98 99 100 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 98 def commands @commands end |
#connect_events ⇒ Boolean
Returns Connect events.
32 33 34 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 32 def connect_events @connect_events end |
#count_messages ⇒ Boolean
Returns Count messages in channel.
35 36 37 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 35 def @count_messages end |
#custom_events ⇒ Boolean
Returns Custom events.
38 39 40 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 38 def custom_events @custom_events end |
#delivery_events ⇒ Boolean
41 42 43 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 41 def delivery_events @delivery_events end |
#grants ⇒ Hash<String, Array<String>>
Returns List of grants for the channel type.
104 105 106 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 104 def grants @grants end |
#mark_messages_pending ⇒ Boolean
Returns Mark messages pending.
44 45 46 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 44 def @mark_messages_pending end |
#max_message_length ⇒ Integer
Returns Max message length.
20 21 22 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 20 def @max_message_length end |
#message_retention ⇒ String
Returns Message retention.
47 48 49 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 47 def @message_retention end |
#mutes ⇒ Boolean
Returns Mutes.
50 51 52 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 50 def mutes @mutes end |
#name ⇒ String
Returns Channel type name.
23 24 25 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 23 def name @name end |
#partition_size ⇒ Integer
Returns Partition size.
53 54 55 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 53 def partition_size @partition_size end |
#partition_ttl ⇒ String
Returns Partition TTL.
56 57 58 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 56 def partition_ttl @partition_ttl end |
#permissions ⇒ Array<PolicyRequest>
Returns List of permissions for the channel type.
101 102 103 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 101 def @permissions end |
#polls ⇒ Boolean
Returns Polls.
59 60 61 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 59 def polls @polls end |
#push_notifications ⇒ Boolean
Returns Push notifications.
62 63 64 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 62 def push_notifications @push_notifications end |
#reactions ⇒ Boolean
Returns Reactions.
65 66 67 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 65 def reactions @reactions end |
#read_events ⇒ Boolean
Returns Read events.
68 69 70 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 68 def read_events @read_events end |
#replies ⇒ Boolean
Returns Replies.
71 72 73 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 71 def replies @replies end |
#search ⇒ Boolean
Returns Search.
74 75 76 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 74 def search @search end |
#shared_locations ⇒ Boolean
Returns Enables shared location messages.
77 78 79 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 77 def shared_locations @shared_locations end |
#skip_last_msg_update_for_system_msgs ⇒ Boolean
80 81 82 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 80 def skip_last_msg_update_for_system_msgs @skip_last_msg_update_for_system_msgs end |
#typing_events ⇒ Boolean
Returns Typing events.
83 84 85 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 83 def typing_events @typing_events end |
#uploads ⇒ Boolean
Returns Uploads.
86 87 88 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 86 def uploads @uploads end |
#url_enrichment ⇒ Boolean
Returns URL enrichment.
89 90 91 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 89 def url_enrichment @url_enrichment end |
#user_message_reminders ⇒ Boolean
92 93 94 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 92 def @user_message_reminders end |
Class Method Details
.json_field_mappings ⇒ Object
Override field mappings for JSON serialization
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 143 def self.json_field_mappings { automod: 'automod', automod_behavior: 'automod_behavior', max_message_length: 'max_message_length', name: 'name', blocklist: 'blocklist', blocklist_behavior: 'blocklist_behavior', connect_events: 'connect_events', count_messages: 'count_messages', custom_events: 'custom_events', delivery_events: 'delivery_events', mark_messages_pending: 'mark_messages_pending', message_retention: 'message_retention', mutes: 'mutes', partition_size: 'partition_size', partition_ttl: 'partition_ttl', polls: 'polls', push_notifications: 'push_notifications', reactions: 'reactions', read_events: 'read_events', replies: 'replies', search: 'search', shared_locations: 'shared_locations', skip_last_msg_update_for_system_msgs: 'skip_last_msg_update_for_system_msgs', typing_events: 'typing_events', uploads: 'uploads', url_enrichment: 'url_enrichment', user_message_reminders: 'user_message_reminders', blocklists: 'blocklists', commands: 'commands', permissions: 'permissions', grants: 'grants' } end |