Class: Twilio::REST::IpMessaging::V2::ServiceContext::UserContext::UserChannelInstance

Inherits:
Twilio::REST::InstanceResource show all
Defined in:
lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, user_sid: nil, channel_sid: nil) ⇒ UserChannelInstance

Initialize the UserChannelInstance



258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 258

def initialize(version, payload , service_sid: nil, user_sid: nil, channel_sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'service_sid' => payload['service_sid'],
        'channel_sid' => payload['channel_sid'],
        'user_sid' => payload['user_sid'],
        'member_sid' => payload['member_sid'],
        'status' => payload['status'],
        'last_consumed_message_index' => payload['last_consumed_message_index'] == nil ? payload['last_consumed_message_index'] : payload['last_consumed_message_index'].to_i,
        'unread_messages_count' => payload['unread_messages_count'] == nil ? payload['unread_messages_count'] : payload['unread_messages_count'].to_i,
        'links' => payload['links'],
        'url' => payload['url'],
        'notification_level' => payload['notification_level'],
    }

    # Context
    @instance_context = nil
    @params = { 'service_sid' => service_sid  || @properties['service_sid']  ,'user_sid' => user_sid  || @properties['user_sid']  ,'channel_sid' => channel_sid  || @properties['channel_sid']  , }
end

Instance Method Details

#account_sidString



294
295
296
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 294

def 
    @properties['account_sid']
end

#channel_sidString



306
307
308
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 306

def channel_sid
    @properties['channel_sid']
end

#contextUserChannelContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context



285
286
287
288
289
290
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 285

def context
    unless @instance_context
        @instance_context = UserChannelContext.new(@version , @params['service_sid'], @params['user_sid'], @params['channel_sid'])
    end
    @instance_context
end

#deleteBoolean

Delete the UserChannelInstance



361
362
363
364
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 361

def delete

    context.delete
end

#fetchUserChannelInstance

Fetch the UserChannelInstance



369
370
371
372
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 369

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



402
403
404
405
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 402

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.IpMessaging.V2.UserChannelInstance #{values}>"
end

#last_consumed_message_indexString



330
331
332
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 330

def last_consumed_message_index
    @properties['last_consumed_message_index']
end


342
343
344
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 342

def links
    @properties['links']
end

#member_sidString



318
319
320
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 318

def member_sid
    @properties['member_sid']
end

#notification_levelNotificationLevel



354
355
356
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 354

def notification_level
    @properties['notification_level']
end

#service_sidString



300
301
302
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 300

def service_sid
    @properties['service_sid']
end

#statusChannelStatus



324
325
326
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 324

def status
    @properties['status']
end

#to_sObject

Provide a user friendly representation



395
396
397
398
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 395

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.IpMessaging.V2.UserChannelInstance #{values}>"
end

#unread_messages_countString



336
337
338
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 336

def unread_messages_count
    @properties['unread_messages_count']
end

#update(notification_level: :unset, last_consumed_message_index: :unset, last_consumption_timestamp: :unset) ⇒ UserChannelInstance

Update the UserChannelInstance



380
381
382
383
384
385
386
387
388
389
390
391
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 380

def update(
    notification_level: :unset, 
    last_consumed_message_index: :unset, 
    last_consumption_timestamp: :unset
)

    context.update(
        notification_level: notification_level, 
        last_consumed_message_index: last_consumed_message_index, 
        last_consumption_timestamp: last_consumption_timestamp, 
    )
end

#urlString



348
349
350
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 348

def url
    @properties['url']
end

#user_sidString



312
313
314
# File 'lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb', line 312

def user_sid
    @properties['user_sid']
end