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'] = 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 = 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 = attributes[:mark_messages_pending] || attributes['mark_messages_pending'] || nil = 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 = attributes[:user_message_reminders] || attributes['user_message_reminders'] || nil @blocklists = attributes[:blocklists] || attributes['blocklists'] || nil @commands = attributes[:commands] || attributes['commands'] || nil = attributes[:permissions] || attributes['permissions'] || nil @grants = attributes[:grants] || attributes['grants'] || nil end |
Instance Attribute Details
#automod ⇒ String
14 15 16 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 14 def automod @automod end |
#automod_behavior ⇒ String
17 18 19 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 17 def automod_behavior @automod_behavior end |
#blocklist ⇒ String
26 27 28 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 26 def blocklist @blocklist end |
#blocklist_behavior ⇒ String
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>
95 96 97 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 95 def blocklists @blocklists end |
#commands ⇒ Array<String>
98 99 100 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 98 def commands @commands end |
#connect_events ⇒ Boolean
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
35 36 37 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 35 def end |
#custom_events ⇒ Boolean
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>>
104 105 106 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 104 def grants @grants end |
#mark_messages_pending ⇒ Boolean
44 45 46 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 44 def end |
#max_message_length ⇒ Integer
20 21 22 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 20 def end |
#message_retention ⇒ String
47 48 49 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 47 def end |
#mutes ⇒ Boolean
50 51 52 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 50 def mutes @mutes end |
#name ⇒ String
23 24 25 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 23 def name @name end |
#partition_size ⇒ Integer
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
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>
101 102 103 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 101 def end |
#polls ⇒ Boolean
59 60 61 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 59 def polls @polls end |
#push_notifications ⇒ Boolean
62 63 64 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 62 def push_notifications @push_notifications end |
#reactions ⇒ Boolean
65 66 67 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 65 def reactions @reactions end |
#read_events ⇒ Boolean
68 69 70 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 68 def read_events @read_events end |
#replies ⇒ Boolean
71 72 73 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 71 def replies @replies end |
#search ⇒ Boolean
74 75 76 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 74 def search @search end |
#shared_locations ⇒ Boolean
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
83 84 85 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 83 def typing_events @typing_events end |
#uploads ⇒ Boolean
86 87 88 |
# File 'lib/getstream_ruby/generated/models/create_channel_type_request.rb', line 86 def uploads @uploads end |
#url_enrichment ⇒ Boolean
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 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 |